From: Zachary Turner Date: Thu, 16 Mar 2017 23:19:40 +0000 (+0000) Subject: Fix unit test. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8f4fdbe01a6ec093dc716799e0c04e811ef90760;p=llvm Fix unit test. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@298014 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/Support/Path.cpp b/unittests/Support/Path.cpp index 0e19fffa994..cfd448b5fc9 100644 --- a/unittests/Support/Path.cpp +++ b/unittests/Support/Path.cpp @@ -59,7 +59,7 @@ TEST(is_separator, Works) { #ifdef LLVM_ON_WIN32 EXPECT_TRUE(path::is_separator('\\')); #else - EXPECT_FALSE(path::is_separator('\\', )); + EXPECT_FALSE(path::is_separator('\\')); #endif }