aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2013-01-22 18:33:19 +0000
committerstuconnolly <stuart02@gmail.com>2013-01-22 18:33:19 +0000
commite5dcf54d2608f25028484e4a89b9c7df5cd63679 (patch)
treeecc81f2b479aba80f19fa6c72e38646d5f17f3e8
parent946382f871d60ccb41157c21256797542d9dc7b8 (diff)
downloadsequelpro-e5dcf54d2608f25028484e4a89b9c7df5cd63679.tar.gz
sequelpro-e5dcf54d2608f25028484e4a89b9c7df5cd63679.tar.bz2
sequelpro-e5dcf54d2608f25028484e4a89b9c7df5cd63679.zip
PostgresKit: Fix tests.
-rw-r--r--Frameworks/PostgresKit/Tests/PGDataTypeTests.m2
1 files changed, 1 insertions, 1 deletions
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