diff --git a/swift/Tests/QRCodeGeneratorTests/QRCodeGeneratorTests.swift b/swift/Tests/QRCodeGeneratorTests/QRCodeGeneratorTests.swift index 9948753..cdcf41b 100644 --- a/swift/Tests/QRCodeGeneratorTests/QRCodeGeneratorTests.swift +++ b/swift/Tests/QRCodeGeneratorTests/QRCodeGeneratorTests.swift @@ -30,9 +30,7 @@ final class QRCodeGeneratorTests: XCTestCase { ] func testQRCodeGeneration() throws { - // Tested against the JS implementation using https://www.nayuki.io/page/qr-code-generator-library - - let text = "test" + let text = "Hello World!" let qr = try QRCode.encode(text: text, ecl: .low) let svg = qr.toSVGString(border: 4) @@ -41,7 +39,7 @@ final class QRCodeGeneratorTests: XCTestCase { - + """) }