diff --git a/Examples/Tests/MacroExamples/Implementation/Expression/StringifyMacroTests.swift b/Examples/Tests/MacroExamples/Implementation/Expression/StringifyMacroTests.swift index 99266cb0e74..d2a3a4eeb7c 100644 --- a/Examples/Tests/MacroExamples/Implementation/Expression/StringifyMacroTests.swift +++ b/Examples/Tests/MacroExamples/Implementation/Expression/StringifyMacroTests.swift @@ -33,12 +33,12 @@ final class StringifyMacroTests: XCTestCase { func testExpansionWithStringInterpolation() { assertMacroExpansion( - """ + #""" let b = #stringify("Hello, \(name)") - """, - expandedSource: """ + """#, + expandedSource: #""" let b = ("Hello, \(name)", #""Hello, \(name)""#) - """, + """#, macros: macros, indentationWidth: .spaces(2) )