Skip to content

Commit 56c936d

Browse files
Include only one hash key pair to make sure tests are deterministic
1 parent d4ce6da commit 56c936d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/JSONRPCTests/JSONValueTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,6 @@ final class JSONValueTests: XCTestCase {
7878
XCTAssertEqual(JSONValue.number(1.0).description, "1.0")
7979
XCTAssertEqual(JSONValue.string("yo").description, "yo")
8080
XCTAssertEqual(JSONValue.array([true, false]).description, "[true, false]")
81-
XCTAssertEqual(JSONValue.hash(["a": false, "b": true]).description, "[\"a\": false, \"b\": true]")
81+
XCTAssertEqual(JSONValue.hash(["a": false]).description, "[\"a\": false]")
8282
}
8383
}

0 commit comments

Comments
 (0)