Skip to content

Commit 6608954

Browse files
committed
Optionality of strcmp() varies
1 parent e2574fb commit 6608954

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: Tests/TestingTests/VariadicGenericTests.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ private import _TestingInternals
2525
let nilString: String? = nil
2626
#expect(swt_nullableCString(nilString) == false)
2727

28-
let lhs: String? = "abc"
29-
let rhs: String? = "123"
28+
let lhs = "abc"
29+
let rhs = "123"
3030
#expect(0 != strcmp(lhs, rhs))
3131
}
3232

0 commit comments

Comments
 (0)