From 0f3ed7a48dba2eb3ad726fc8f513159baca13b71 Mon Sep 17 00:00:00 2001 From: Raphael Isemann Date: Thu, 15 Apr 2021 10:02:51 +0200 Subject: [PATCH] [lldb] Fix incorrect test data in FileSpecTest.IsRelative Found by clang-tidy's bugprone-suspicious-missing-comma. --- lldb/unittests/Utility/FileSpecTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/unittests/Utility/FileSpecTest.cpp b/lldb/unittests/Utility/FileSpecTest.cpp index ad2e328..3dd3552 100644 --- a/lldb/unittests/Utility/FileSpecTest.cpp +++ b/lldb/unittests/Utility/FileSpecTest.cpp @@ -305,7 +305,7 @@ TEST(FileSpecTest, IsRelative) { "~/", "~/a", "~/a/", - "~/a/b" + "~/a/b", "~/a/b/", "/foo/.", "/foo/..", -- 2.7.4