aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Frameworks/PostgresKit/Tests/PGDataTypeTests.m9
1 files changed, 2 insertions, 7 deletions
diff --git a/Frameworks/PostgresKit/Tests/PGDataTypeTests.m b/Frameworks/PostgresKit/Tests/PGDataTypeTests.m
index 629ec32a..4c96a97c 100644
--- a/Frameworks/PostgresKit/Tests/PGDataTypeTests.m
+++ b/Frameworks/PostgresKit/Tests/PGDataTypeTests.m
@@ -117,17 +117,12 @@ static NSUInteger PGTestDatabasePort = 5432;
STAssertNotNil(_result, nil);
}
-- (void)testResultIsOfCorrectType
+- (void)testResultIsOfCorrectTypeAndValue
{
- STAssertEquals([_result class], [_expectedResult class], @"Expected _result to be of type %@, but is actually %@", [_expectedResult className], [_result className]);
-}
-
-- (void)testResultHasCorrectValue
-{
STAssertEqualObjects(_result, _expectedResult, nil);
}
-#pragma mark -r
+#pragma mark -
#pragma mark Private API
- (void)_establishConnection