Skip to content

Commit 13f7e53

Browse files
Fix test for #14578 (danmar#8317)
1 parent 5aa8739 commit 13f7e53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/testsimplifyusing.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@ class TestSimplifyUsing : public TestFixture {
930930

931931
void simplifyUsing39() {
932932
const char code[] = "using std::wstring;\n" // #14578
933-
"std::wstring ws;";
933+
"wstring ws;";
934934
const char expected[] = "std :: wstring ws ;";
935935
ASSERT_EQUALS(expected, tok(code));
936936
ASSERT_EQUALS("", errout_str());

0 commit comments

Comments
 (0)