Skip to content

Commit

Permalink
Compress SwiftLint violation
Browse files Browse the repository at this point in the history
  • Loading branch information
wongzigii committed Sep 8, 2017
1 parent 112c9e2 commit 50ecfbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/SwiftyJSONTests/SubscriptTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ class SubscriptTests: XCTestCase {
func testDictionaryAllBool() {
var json: JSON = ["t": true, "f": false, "false": false, "tr": true, "true": true, "yes": true, "1": true]
XCTAssertTrue(json["1"] == true)
XCTAssertTrue(json["yes"] == true);
XCTAssertTrue(json["yes"] == true)
XCTAssertTrue(json["t"] == true)
XCTAssertTrue(json["f"] == false)
XCTAssertTrue(json["false"] == false)
Expand Down

0 comments on commit 50ecfbe

Please sign in to comment.