diff options
Diffstat (limited to 'Frameworks/PostgresKit')
-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 c9f70772..ac1133bb 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]], @""); + STAssertTrue([_result isKindOfClass:[_expectedResult class]], @"Expected _result to be of type %@, but is actually %@", [_expectedResult className], [_result className]); } - (void)testResultHasCorrectValue |