Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephDuffy committed Sep 12, 2022
1 parent f458883 commit bf87af6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ final class UserDefaultsStorageTests: XCTestCase {

userDefaultsStorage.storeValue(.bool(value), key: key)

XCTAssertEqual(userDefaultsStorage.userDefaults.bool(forKey: key), value, "Bools should be retreivable from NSUbiquitousKeyValueStore as bools")
XCTAssertEqual(userDefaultsStorage.userDefaults.bool(forKey: key), value, "Bools should be retrievable from NSUbiquitousKeyValueStore as bools")
// Bools are stored within `NSUbiquitousKeyValueStore` as Int.
// `StorableInUserDefaultsTransformer` converts this to a `Bool` as required.
XCTAssertEqual(userDefaultsStorage.retrieveValue(for: key), .int(0))
Expand Down

0 comments on commit bf87af6

Please sign in to comment.