aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/PostgresKit/Tests/PGPostgresResultTests.m
diff options
context:
space:
mode:
authorMax <post@wickenrode.com>2016-03-05 04:42:34 +0100
committerMax <post@wickenrode.com>2016-03-05 04:42:34 +0100
commit1e4d40f9a8dbc49e43d3e950a0a9121c7cb010f9 (patch)
tree25a806f17a066feac07b37b90760c0c7b85b525a /Frameworks/PostgresKit/Tests/PGPostgresResultTests.m
parent2301018aeddd58ff0b2c90e2ae0dc88d213192c2 (diff)
parent96619853ae80f40e34c53105f08f79e89bb9df13 (diff)
downloadsequelpro-1e4d40f9a8dbc49e43d3e950a0a9121c7cb010f9.tar.gz
sequelpro-1e4d40f9a8dbc49e43d3e950a0a9121c7cb010f9.tar.bz2
sequelpro-1e4d40f9a8dbc49e43d3e950a0a9121c7cb010f9.zip
Merge branch 'master' of https://github.com/sequelpro/sequelpro
Diffstat (limited to 'Frameworks/PostgresKit/Tests/PGPostgresResultTests.m')
-rw-r--r--Frameworks/PostgresKit/Tests/PGPostgresResultTests.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Frameworks/PostgresKit/Tests/PGPostgresResultTests.m b/Frameworks/PostgresKit/Tests/PGPostgresResultTests.m
index ef64ea53..8e27b163 100644
--- a/Frameworks/PostgresKit/Tests/PGPostgresResultTests.m
+++ b/Frameworks/PostgresKit/Tests/PGPostgresResultTests.m
@@ -63,7 +63,7 @@
"}");
// Compare the output after getting rid of newlines and spaces
- STAssertTrue([[[[_result description] stringByReplacingOccurrencesOfString:@"\n" withString:@""] stringByReplacingOccurrencesOfString:@" " withString:@""] isEqualToString:@"{"
+ XCTAssertTrue([[[[_result description] stringByReplacingOccurrencesOfString:@"\n" withString:@""] stringByReplacingOccurrencesOfString:@" " withString:@""] isEqualToString:@"{"
"\"bigint_field\" = 123456789;"
"\"bool_field\" = 1;"
"\"char_field\" = CHAR;"
@@ -77,7 +77,7 @@
"\"timestamptz_field\" = \"8 Apr 1987 03:02:02 GMT+01:00\";"
"\"timetz_field\" = \"02:02:02 GMT+10:00\";"
"\"varchar_field\" = VARCHAR;"
- "}"], nil);
+ "}"]);
}
#pragma mark -