From d4fbdfa228cea2034c697e53de5ac283b5f4024e Mon Sep 17 00:00:00 2001 From: Kevin Harwood Date: Thu, 16 May 2013 14:24:56 -0500 Subject: [PATCH] Fixed the names --- Tests/AFJSONRequestOperationTests.m | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Tests/AFJSONRequestOperationTests.m b/Tests/AFJSONRequestOperationTests.m index f42b648..e1ee9f9 100644 --- a/Tests/AFJSONRequestOperationTests.m +++ b/Tests/AFJSONRequestOperationTests.m @@ -21,7 +21,7 @@ self.baseURL = [NSURL URLWithString:AFNetworkingTestsBaseURLString]; } -- (void)testThatJSONRequestionOperationAcceptsApplicationJSON{ +- (void)testThatJSONRequestOperationAcceptsApplicationJSON{ NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"/response-headers?Content-Type=application/json" relativeToURL:self.baseURL]]; AFJSONRequestOperation *operation = [[AFJSONRequestOperation alloc] initWithRequest:request]; [operation start]; @@ -29,7 +29,7 @@ expect(operation.error).will.beNil(); } -- (void)testThatJSONRequestionOperationAcceptsTextJSON{ +- (void)testThatJSONRequestOperationAcceptsTextJSON{ NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"/response-headers?Content-Type=text/json" relativeToURL:self.baseURL]]; AFJSONRequestOperation *operation = [[AFJSONRequestOperation alloc] initWithRequest:request]; [operation start]; @@ -37,7 +37,7 @@ expect(operation.error).will.beNil(); } -- (void)testThatJSONRequestionOperationAcceptsTextJavascript{ +- (void)testThatJSONRequestOperationAcceptsTextJavascript{ NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"/response-headers?Content-Type=text/javascript" relativeToURL:self.baseURL]]; AFJSONRequestOperation *operation = [[AFJSONRequestOperation alloc] initWithRequest:request]; [operation start]; @@ -45,7 +45,7 @@ expect(operation.error).will.beNil(); } -- (void)testThatJSONRequestionOperationDoesNotAcceptInvalidContentType{ +- (void)testThatJSONRequestOperationDoesNotAcceptInvalidContentType{ NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"/response-headers?Content-Type=application/no-json" relativeToURL:self.baseURL]]; AFJSONRequestOperation *operation = [[AFJSONRequestOperation alloc] initWithRequest:request]; [operation start];