Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
adamnemecek committed Jul 1, 2022
1 parent 349405b commit a35eaf3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tests/swiftRoaringTests/swiftRoaringTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -384,10 +384,10 @@ class swiftRoaringTests: XCTestCase {
}

func testIsDisjoint() {
let a: RoaringBitmap = [1,2,3,4,5]
let b: RoaringBitmap = [6,7,8,9,10]
let a: RoaringBitmap = [1, 2, 3, 4, 5]
let b: RoaringBitmap = [6, 7, 8, 9, 10]

let c: RoaringBitmap = [5,6,7,8]
let c: RoaringBitmap = [5, 6, 7, 8]

XCTAssert(a.isDisjoint(with: b))
XCTAssert(!a.isDisjoint(with: c))
Expand Down

0 comments on commit a35eaf3

Please sign in to comment.