summaryrefslogtreecommitdiffstats
path: root/test/Refactor/Extract/ExtractExprIntoFunction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/Refactor/Extract/ExtractExprIntoFunction.cpp')
-rw-r--r--test/Refactor/Extract/ExtractExprIntoFunction.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Refactor/Extract/ExtractExprIntoFunction.cpp b/test/Refactor/Extract/ExtractExprIntoFunction.cpp
index be610fc303..b4f0b59543 100644
--- a/test/Refactor/Extract/ExtractExprIntoFunction.cpp
+++ b/test/Refactor/Extract/ExtractExprIntoFunction.cpp
@@ -20,10 +20,10 @@ void simpleExtractStmtNoCaptures() {
// CHECK: 1 'astatement' results:
// CHECK: static void extracted() {
// CHECK-NEXT: int a = 1;
-// CHECK-NEXT: int b = 2;;{{$}}
+// CHECK-NEXT: int b = 2;{{$}}
// CHECK-NEXT: }{{[[:space:]].*}}
// CHECK-NEXT: void simpleExtractStmtNoCaptures() {
-// CHECK-NEXT: /*range astatement=->+1:13*/extracted(){{$}}
+// CHECK-NEXT: /*range astatement=->+1:13*/extracted();{{$}}
// CHECK-NEXT: }