@@ -33,18 +33,18 @@ #import "TestsAppDelegate.h" static OFString *module = @"OFHTTPClient"; static OFCondition *cond; -@interface OFHTTPClientTestsServer: OFThread +@interface HTTPClientTestsServer: OFThread { @public uint16_t _port; } @end -@implementation OFHTTPClientTestsServer +@implementation HTTPClientTestsServer - main { OFTCPSocket *listener, *client; [cond lock]; @@ -81,25 +81,25 @@ return nil; } @end -@implementation TestsAppDelegate (OFHTTPClientests) +@implementation TestsAppDelegate (OFHTTPClientTests) - (void)HTTPClientTests { OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; - OFHTTPClientTestsServer *server; + HTTPClientTestsServer *server; OFURL *url; OFHTTPClient *client; OFHTTPRequest *request; OFHTTPResponse *response = nil; OFDataArray *data; cond = [OFCondition condition]; [cond lock]; - server = [[[OFHTTPClientTestsServer alloc] init] autorelease]; + server = [[[HTTPClientTestsServer alloc] init] autorelease]; [server start]; [cond wait]; [cond unlock];