From e1e1bf42792e291b65bdbd8fa23f8c870f2280a1 Mon Sep 17 00:00:00 2001 From: Thomas Betous Date: Fri, 20 Oct 2023 08:40:19 +0200 Subject: [PATCH] Update MasterMixologistTests.swift (#700) --- .../Tests/MasterMixologistTests/MasterMixologistTests.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/master-mixologist/Tests/MasterMixologistTests/MasterMixologistTests.swift b/exercises/concept/master-mixologist/Tests/MasterMixologistTests/MasterMixologistTests.swift index 773e004d2..ef2b59e43 100644 --- a/exercises/concept/master-mixologist/Tests/MasterMixologistTests/MasterMixologistTests.swift +++ b/exercises/concept/master-mixologist/Tests/MasterMixologistTests/MasterMixologistTests.swift @@ -28,7 +28,7 @@ final class MasterMixologistTests: XCTestCase { try XCTSkipIf(true && !runAll) // change true to false to run this test let got = makeWedges( needed: 42, limes: ["small", "large", "large", "medium", "small", "large", "large"]) - XCTAssertEqual(got, 6, "You needto use 6 limes to fill the bin; you said you need \(got).") + XCTAssertEqual(got, 6, "You need to use 6 limes to fill the bin; you said you need \(got).") } func testMakeWedgesNoNeed() throws {