Fix unit test for Count formatting

This commit is contained in:
1024jp 2024-02-04 17:12:06 +09:00
parent cd611f96ad
commit 82e4f9123d

View File

@ -8,7 +8,7 @@
//
// ---------------------------------------------------------------------------
//
// © 2020-2023 1024jp
// © 2020-2024 1024jp
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@ -143,6 +143,6 @@ final class EditorInfoCountOperationTests: XCTestCase {
XCTAssertEqual(count.formatted, "1,000 (100)")
count.entire = nil
XCTAssertEqual(count.formatted, "- (100)")
XCTAssertNil(count.formatted)
}
}