diff --git a/Source/santad/DataLayer/SNTRuleTableTest.m b/Source/santad/DataLayer/SNTRuleTableTest.m index 821d7449..70b8ace7 100644 --- a/Source/santad/DataLayer/SNTRuleTableTest.m +++ b/Source/santad/DataLayer/SNTRuleTableTest.m @@ -537,10 +537,8 @@ - (void)testCriticalBinariesProduceFullSigningInformation { // This test ensures that we bump the constant on updates to the rule table // schema. - (void)testConstantVersionIsUpdated { - uint32_t expectedValue = 8; - uint32_t constantVersion = [self.sut currentSupportedVersion]; - XCTAssertEqual(expectedValue, [self.sut currentVersion], @"currentSchemaVersion should be 8"); - XCTAssertEqual(expectedValue, constantVersion, @"currentSupportedVersion should be 8"); + XCTAssertEqual([self.sut currentSupportedVersion], [self.sut currentVersion], + @"initialized database should update to the maximum supported version"); } @end