Skip to content

Commit

Permalink
Fix a copy-paste issue in the unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mokagio committed Feb 23, 2024
1 parent e7c041b commit 988681e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WordPress/WordPressTest/PagesListTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ class PagesListTests: CoreDataTestCase {
XCTAssertTrue(orderDiff.count == 0, "Unexpected order difference: \(orderDiff)", file: file, line: line)

let levelDiff = originalLevels.difference(from: newLevels).inferringMoves()
XCTAssertTrue(orderDiff.count == 0, "Unexpected level difference: \(orderDiff)", file: file, line: line)
XCTAssertTrue(levelDiff.count == 0, "Unexpected level difference: \(levelDiff)", file: file, line: line)
}
}

Expand Down

0 comments on commit 988681e

Please sign in to comment.