From 3ef9ad545e3af29d680ee577a15a669f0acf93ca Mon Sep 17 00:00:00 2001 From: David Phillips Date: Wed, 22 Apr 2015 12:52:32 -0700 Subject: [PATCH] Fix drop table test to use correct table --- .../facebook/presto/tests/AbstractTestDistributedQueries.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/presto-tests/src/main/java/com/facebook/presto/tests/AbstractTestDistributedQueries.java b/presto-tests/src/main/java/com/facebook/presto/tests/AbstractTestDistributedQueries.java index 3c4e9cef2276..b1ae66b1f56c 100644 --- a/presto-tests/src/main/java/com/facebook/presto/tests/AbstractTestDistributedQueries.java +++ b/presto-tests/src/main/java/com/facebook/presto/tests/AbstractTestDistributedQueries.java @@ -188,7 +188,7 @@ public void testDropTableIfExists() throws Exception { assertFalse(queryRunner.tableExists(getSession(), "test_drop_if_exists")); - assertQueryTrue("DROP TABLE IF EXISTS test_create"); + assertQueryTrue("DROP TABLE IF EXISTS test_drop_if_exists"); assertFalse(queryRunner.tableExists(getSession(), "test_drop_if_exists")); }