From c08c6e237f31f204483ce9be747cbc133cda7f02 Mon Sep 17 00:00:00 2001 From: Bryan Cutler Date: Thu, 20 Jul 2017 16:30:03 -0700 Subject: [PATCH] enabled JavaTester in integration tests --- integration/integration_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/integration_test.py b/integration/integration_test.py index 215ba58232a0..b7f1609935e7 100644 --- a/integration/integration_test.py +++ b/integration/integration_test.py @@ -945,7 +945,7 @@ def get_static_json_files(): def run_all_tests(debug=False): - testers = [CPPTester(debug=debug)] # , JavaTester(debug=debug)] + testers = [CPPTester(debug=debug), JavaTester(debug=debug)] static_json_files = get_static_json_files() generated_json_files = get_generated_json_files() json_files = static_json_files + generated_json_files