We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd58404 commit 389c7d2Copy full SHA for 389c7d2
RMQClientTests/RMQHTTPTest.swift
@@ -44,9 +44,9 @@ import XCTest
44
45
class RMQHTTPTest: XCTestCase {
46
func testGet() {
47
- let http = RMQHTTP("http://scooterlabs.com")
48
- let actual = http.get("/echo")
+ let http = RMQHTTP("http://httpbin.org")
+ let actual = http.get("/uuid")
49
let actualString = String(data: actual, encoding: String.Encoding.utf8)
50
- XCTAssertNotNil(actualString!.range(of: "[method] => GET"))
+ XCTAssertNotNil(actualString!.range(of: "uuid"))
51
}
52
0 commit comments