summaryrefslogtreecommitdiff
path: root/dexdump/dexdump_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'dexdump/dexdump_test.cc')
-rw-r--r--dexdump/dexdump_test.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/dexdump/dexdump_test.cc b/dexdump/dexdump_test.cc
index bb6d4a4b9b..a0f5335409 100644
--- a/dexdump/dexdump_test.cc
+++ b/dexdump/dexdump_test.cc
@@ -39,8 +39,7 @@ class DexDumpTest : public CommonRuntimeTest {
// Runs test with given arguments.
bool Exec(const std::vector<std::string>& args, std::string* error_msg) {
- // TODO(ajcbik): dexdump2 -> dexdump
- std::string file_path = GetTestAndroidRoot() + "/bin/dexdump2";
+ std::string file_path = GetTestAndroidRoot() + "/bin/dexdump";
EXPECT_TRUE(OS::FileExists(file_path.c_str())) << file_path << " should be a valid file path";
std::vector<std::string> exec_argv = { file_path };
exec_argv.insert(exec_argv.end(), args.begin(), args.end());