diff options
Diffstat (limited to 'UnitTests/mcpKitTest.m')
-rw-r--r-- | UnitTests/mcpKitTest.m | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/UnitTests/mcpKitTest.m b/UnitTests/mcpKitTest.m index 35385b9a..8af68c64 100644 --- a/UnitTests/mcpKitTest.m +++ b/UnitTests/mcpKitTest.m @@ -24,7 +24,6 @@ #import "mcpKitTest.h" - @implementation mcpKitTest - (void)setUp @@ -35,7 +34,7 @@ // set up a user called 'sakila' with no password that has all privs on the // database 'sakila' - mySQLConnection = [[CMMCPConnection alloc] initToSocket:@"/var/mysql/mysql.sock" + mySQLConnection = [[MCPConnection alloc] initToSocket:@"/var/mysql/mysql.sock" withLogin:@"sakila" password:@""]; @@ -75,7 +74,7 @@ if( mySQLConnection == nil ) return; - CMMCPResult *theResult; + MCPResult *theResult; NSString *pQuery = @"SELECT * FROM actor"; theResult = [mySQLConnection queryString:pQuery]; |