From e5dcf54d2608f25028484e4a89b9c7df5cd63679 Mon Sep 17 00:00:00 2001 From: stuconnolly Date: Tue, 22 Jan 2013 18:33:19 +0000 Subject: PostgresKit: Fix tests. --- Frameworks/PostgresKit/Tests/PGDataTypeTests.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frameworks/PostgresKit/Tests/PGDataTypeTests.m b/Frameworks/PostgresKit/Tests/PGDataTypeTests.m index ac1133bb..a720856b 100644 --- a/Frameworks/PostgresKit/Tests/PGDataTypeTests.m +++ b/Frameworks/PostgresKit/Tests/PGDataTypeTests.m @@ -119,7 +119,7 @@ static NSUInteger PGTestDatabasePort = 5432; - (void)testResultIsOfCorrectType { - STAssertTrue([_result isKindOfClass:[_expectedResult class]], @"Expected _result to be of type %@, but is actually %@", [_expectedResult className], [_result className]); + STAssertEquals([_result class], [_expectedResult class], @"Expected _result to be of type %@, but is actually %@", [_expectedResult className], [_result className]); } - (void)testResultHasCorrectValue -- cgit v1.2.3