diff options
author | Marius Ursache <marius@marius.me.uk> | 2016-02-27 09:21:29 +1100 |
---|---|---|
committer | Marius Ursache <marius@marius.me.uk> | 2016-02-27 09:21:29 +1100 |
commit | 0f3ce372c0c777287f81f6db2f8431a4d32f1cd4 (patch) | |
tree | ea7481679a5ff1649311939234e4712f56e764e5 /UnitTests | |
parent | 011715230933244af2492daf9e6dcf2012a6306d (diff) | |
download | sequelpro-0f3ce372c0c777287f81f6db2f8431a4d32f1cd4.tar.gz sequelpro-0f3ce372c0c777287f81f6db2f8431a4d32f1cd4.tar.bz2 sequelpro-0f3ce372c0c777287f81f6db2f8431a4d32f1cd4.zip |
Revert "Fixed testCopyTableFromTo_NoPermissions test"
This reverts commit 4d2ec773b833b06fd6925502eb4ac512b1274b86.
Diffstat (limited to 'UnitTests')
-rw-r--r-- | UnitTests/SPTableCopyTest.m | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/UnitTests/SPTableCopyTest.m b/UnitTests/SPTableCopyTest.m index 563322df..20801786 100644 --- a/UnitTests/SPTableCopyTest.m +++ b/UnitTests/SPTableCopyTest.m @@ -88,9 +88,8 @@ { SPTableCopy *tableCopy = [[SPTableCopy alloc] init]; - [tableCopy setConnection:mockConnection]; - XCTAssertFalse([tableCopy copyTable:@"table_name" from:@"source_db" to:@"target_db"], @"copy operation must fail."); + XCTAssertFalse([tableCopy copyTable:@"table_name" from:@"source_db" to:@"target_db"],@"copy operation must fail."); [tableCopy release]; } |