diff options
author | Eric Liu <ioeric@google.com> | 2018-07-04 09:54:23 +0000 |
---|---|---|
committer | Eric Liu <ioeric@google.com> | 2018-07-04 09:54:23 +0000 |
commit | d68f25568645ad56b989d6825bdef63d9c21c0c5 (patch) | |
tree | dcc2993243c0b4cf83cbc3ed8891a6664cfec344 | |
parent | bd225cff89348181f715ac6ed8c44a38e0805fa5 (diff) | |
download | bcm5719-llvm-d68f25568645ad56b989d6825bdef63d9c21c0c5.tar.gz bcm5719-llvm-d68f25568645ad56b989d6825bdef63d9c21c0c5.zip |
[clangd] Cleanup unittest: URIs. NFC.
llvm-svn: 336253
-rw-r--r-- | clang-tools-extra/unittests/clangd/FileDistanceTests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang-tools-extra/unittests/clangd/FileDistanceTests.cpp b/clang-tools-extra/unittests/clangd/FileDistanceTests.cpp index 3b525ae790f..0d5afc9a9b1 100644 --- a/clang-tools-extra/unittests/clangd/FileDistanceTests.cpp +++ b/clang-tools-extra/unittests/clangd/FileDistanceTests.cpp @@ -76,8 +76,8 @@ TEST(FileDistanceTests, URI) { #else EXPECT_EQ(D.distance("file:///not/a/testpath/either"), 3u); #endif - EXPECT_EQ(D.distance("unittest:foo"), 1000u); - EXPECT_EQ(D.distance("unittest:bar"), 1008u); + EXPECT_EQ(D.distance("unittest:///foo"), 1000u); + EXPECT_EQ(D.distance("unittest:///bar"), 1008u); } TEST(FileDistance, LimitUpTraversals) { |