diff --git a/AmplifyPlugins/Auth/Tests/AuthHostApp/AuthIntegrationTests/AppSyncSignerTests/AppSyncSignerTests.swift b/AmplifyPlugins/Auth/Tests/AuthHostApp/AuthIntegrationTests/AppSyncSignerTests/AppSyncSignerTests.swift index 02cedefdfb..c13675ea17 100644 --- a/AmplifyPlugins/Auth/Tests/AuthHostApp/AuthIntegrationTests/AppSyncSignerTests/AppSyncSignerTests.swift +++ b/AmplifyPlugins/Auth/Tests/AuthHostApp/AuthIntegrationTests/AppSyncSignerTests/AppSyncSignerTests.swift @@ -20,7 +20,7 @@ class AppSyncSignerTests: AWSAuthBaseTest { /// - I should get a signed request. /// func testSignAppSyncRequest() async throws { - let request = URLRequest(url: URL(string: "http://graphql.com")!) + let request = URLRequest(url: URL(string: "http://graphql.com?param=value")!) let signer = AWSCognitoAuthPlugin.createAppSyncSigner(region: "us-east-1") let signedRequest = try await signer(request) guard let headers = signedRequest.allHTTPHeaderFields else {