Fix data size comparison

This commit is contained in:
Christian Treffs 2020-07-22 13:47:11 +02:00
parent 6812e53d7a
commit 6cc1ba3c68
No known key found for this signature in database
GPG Key ID: 49A4B4B460BE3ED4
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ final class FamilyCodingTests: XCTestCase {
var jsonEncoder = JSONEncoder()
let encodedData = try family.encodeMembers(using: &jsonEncoder)
XCTAssertGreaterThanOrEqual(encodedData.count, 190)
XCTAssertGreaterThanOrEqual(encodedData.count, 91)
}
func testDecodingFamily2() throws {