* Tests/base/NSURLRequest/basic.m: Remove two astray @ characters.

These were blocking the file from compiling with gcc 4.6



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34672 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fredkiefer 2012-01-30 23:20:40 +00:00
parent 0b0691a63f
commit 5e8157165f
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2012-01-31 Fred Kiefer <FredKiefer@gmx.de>
* Tests/base/NSURLRequest/basic.m: Remove two astray @ characters.
2012-01-30 Richard Frith-Macdonald <rfm@gnu.org>
* Version: Bump version to 1.24.0 in preparation for release.

View file

@ -49,8 +49,8 @@ int main()
PASS(mutable != nil && [mutable isKindOfClass:[NSMutableURLRequest class]],
"NSURLRequest +new returns a mutable request");
PASS_EQUAL([mutable URL], nil, @"nil URL from empty request");
PASS_EQUAL([mutable HTTPMethod], @"GET", @"GET method from empty request");
PASS_EQUAL([mutable URL], nil, "nil URL from empty request");
PASS_EQUAL([mutable HTTPMethod], @"GET", "GET method from empty request");
[arp release]; arp = nil;
return 0;