summaryrefslogtreecommitdiff
path: root/core/libdeno/file_util_test.cc
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2019-05-01 15:48:56 +0200
committerRyan Dahl <ry@tinyclouds.org>2019-05-01 09:48:56 -0400
commit8978870808db896d1aa0da5deb0d4472ccb46246 (patch)
treea97e65baa0baa533f7bc4cc428b35267c8cb3157 /core/libdeno/file_util_test.cc
parent7237e9d34a61629d5bedce3b9cc46c8a1344d78a (diff)
Rename test targets (#2262)
Diffstat (limited to 'core/libdeno/file_util_test.cc')
-rw-r--r--core/libdeno/file_util_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/libdeno/file_util_test.cc b/core/libdeno/file_util_test.cc
index 80c878044..863a31d48 100644
--- a/core/libdeno/file_util_test.cc
+++ b/core/libdeno/file_util_test.cc
@@ -38,7 +38,7 @@ TEST(FileUtilTest, ExePath) {
EXPECT_TRUE(exe_path.find("/") == 0 || exe_path.find(":\\") == 1);
// FIlename is the name of the test binary.
std::string exe_filename = deno::Basename(exe_path);
- EXPECT_EQ(exe_filename.find("test_cc"), 0u);
+ EXPECT_EQ(exe_filename.find("libdeno_test"), 0u);
// Path exists (also tests ReadFileToString).
std::string contents;
EXPECT_TRUE(deno::ReadFileToString(exe_path.c_str(), &contents));