Update parameter order in test_mt_dop.py

The rest of the code base uses them in a different order. This is purely
for consistency. Maybe it'll help prevent a bug in the future.

Change-Id: I925711eb4d4334c179d336f6ebcc91d26ce8879c
Reviewed-on: http://gerrit.cloudera.org:8080/6228
Reviewed-by: Lars Volker <[email protected]>
Tested-by: Impala Public Jenkins


Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/157da298
Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/157da298
Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/157da298

Branch: refs/heads/master
Commit: 157da298d194cc4fa298e3750d87bf102c3295bb
Parents: bf2e897
Author: Lars Volker <[email protected]>
Authored: Thu Mar 2 13:09:38 2017 -0800
Committer: Impala Public Jenkins <[email protected]>
Committed: Fri Mar 3 01:55:50 2017 +0000

----------------------------------------------------------------------
 tests/query_test/test_mt_dop.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/157da298/tests/query_test/test_mt_dop.py
----------------------------------------------------------------------
diff --git a/tests/query_test/test_mt_dop.py b/tests/query_test/test_mt_dop.py
index 5dddfc0..ddef617 100644
--- a/tests/query_test/test_mt_dop.py
+++ b/tests/query_test/test_mt_dop.py
@@ -43,7 +43,7 @@ class TestMtDop(ImpalaTestSuite):
     vector.get_value('exec_option')['mt_dop'] = vector.get_value('mt_dop')
     self.run_test_case('QueryTest/mt-dop', vector)
 
-  def test_compute_stats(self, unique_database, vector):
+  def test_compute_stats(self, vector, unique_database):
     vector.get_value('exec_option')['mt_dop'] = vector.get_value('mt_dop')
     file_format = vector.get_value('table_format').file_format
     fq_table_name = "%s.mt_dop" % unique_database

Reply via email to