diff options
author | stuconnolly <stuart02@gmail.com> | 2013-01-22 18:33:19 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2013-01-22 18:33:19 +0000 |
commit | e5dcf54d2608f25028484e4a89b9c7df5cd63679 (patch) | |
tree | ecc81f2b479aba80f19fa6c72e38646d5f17f3e8 /Frameworks | |
parent | 946382f871d60ccb41157c21256797542d9dc7b8 (diff) | |
download | sequelpro-e5dcf54d2608f25028484e4a89b9c7df5cd63679.tar.gz sequelpro-e5dcf54d2608f25028484e4a89b9c7df5cd63679.tar.bz2 sequelpro-e5dcf54d2608f25028484e4a89b9c7df5cd63679.zip |
PostgresKit: Fix tests.
Diffstat (limited to 'Frameworks')
-rw-r--r-- | Frameworks/PostgresKit/Tests/PGDataTypeTests.m | 2 |
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 |