You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by ka...@apache.org on 2011/03/11 13:30:52 UTC

svn commit: r1080548 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/GrantRevokeDDLTest.java

Author: kahatlen
Date: Fri Mar 11 12:30:52 2011
New Revision: 1080548

URL: http://svn.apache.org/viewvc?rev=1080548&view=rev
Log:
DERBY-5102: GrantRevokeDDLTest depends on implicit ordering of test cases

Drop the created schema when testMinimumSelectPrivilegeRequirement completes.

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/GrantRevokeDDLTest.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/GrantRevokeDDLTest.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/GrantRevokeDDLTest.java?rev=1080548&r1=1080547&r2=1080548&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/GrantRevokeDDLTest.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/GrantRevokeDDLTest.java Fri Mar 11 12:30:52 2011
@@ -10241,6 +10241,10 @@ public final class GrantRevokeDDLTest ex
 		" ( select max(x) + 2 from user1.t4191 )");
 
         user1St.execute("drop table t4191");
+        user1St.execute("drop table t4191_table2");
+        user1St.execute("drop view view_t4191_table3");
+        user1St.execute("drop table t4191_table3");
+        user1St.execute("drop schema user1 restrict");
         user1.close();
         user2.close();
 }