Skip to content

Commit f3dcdc2

Browse files
committed
Cleanup
1 parent ced6342 commit f3dcdc2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

test/Interop/Cxx/templates/non-type-parameter.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %target-run-simple-swift(-I %S/Inputs -Xfrontend -enable-cxx-interop -Xcc -std=c++17)
1+
// RUN: %target-run-simple-swift(-I %S/Inputs -Xfrontend -enable-cxx-interop)
22
//
33
// REQUIRES: executable_test
44

@@ -7,7 +7,7 @@ import StdlibUnittest
77

88
var TemplatesTestSuite = TestSuite("TemplatesTestSuite")
99

10-
TemplatesTestSuite.test("variadic-class-template") {
10+
TemplatesTestSuite.test("non-type-parameter") {
1111
var pair = MagicIntPair(t: (1, 2))
1212
expectEqual(pair.t, (1, 2))
1313
}

test/Interop/Cxx/templates/template-template-parameter.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %target-run-simple-swift(-I %S/Inputs -Xfrontend -enable-cxx-interop -Xcc -std=c++17)
1+
// RUN: %target-run-simple-swift(-I %S/Inputs -Xfrontend -enable-cxx-interop)
22
//
33
// REQUIRES: executable_test
44

@@ -7,7 +7,7 @@ import StdlibUnittest
77

88
var TemplatesTestSuite = TestSuite("TemplatesTestSuite")
99

10-
TemplatesTestSuite.test("variadic-class-template") {
10+
TemplatesTestSuite.test("template-template-parameter") {
1111
let myInt = IntWrapper(value: 42)
1212
var magicInt = WrappedMagicInt(t: myInt)
1313
var templatedWrappedMagicInt = TemplatedWrappedMagicInt(i: magicInt)

test/Interop/Cxx/templates/variadic-class-template.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %target-run-simple-swift(-I %S/Inputs -Xfrontend -enable-cxx-interop -Xcc -std=c++17)
1+
// RUN: %target-run-simple-swift(-I %S/Inputs -Xfrontend -enable-cxx-interop)
22
//
33
// REQUIRES: executable_test
44

0 commit comments

Comments
 (0)