From 04bfd51722a432f7286617b53eeab57a0040aa51 Mon Sep 17 00:00:00 2001 From: Jimmy Arts Date: Tue, 8 Oct 2024 14:30:12 +0200 Subject: [PATCH] Use correct path suffix --- SourceryTests/ConfigurationSpec.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SourceryTests/ConfigurationSpec.swift b/SourceryTests/ConfigurationSpec.swift index 5b9b2283d..1f6144d59 100644 --- a/SourceryTests/ConfigurationSpec.swift +++ b/SourceryTests/ConfigurationSpec.swift @@ -106,7 +106,7 @@ class ConfigurationSpec: QuickSpec { let configServerUrl = configs[0].args[serverUrlArg] as? String expect(configServerUrl).to(equal(serverUrl)) - expect(path).to(equal(Stubs.configs)) + expect(path).to(equal(Stubs.configs + env["SOURCE_PATH"])) } catch { expect("\(error)").to(equal("Invalid config file format. Expected dictionary.")) }