aboutsummaryrefslogtreecommitdiff
path: root/MapTests/MapParserStrategyTests.swift
diff options
context:
space:
mode:
Diffstat (limited to 'MapTests/MapParserStrategyTests.swift')
-rw-r--r--MapTests/MapParserStrategyTests.swift10
1 files changed, 5 insertions, 5 deletions
diff --git a/MapTests/MapParserStrategyTests.swift b/MapTests/MapParserStrategyTests.swift
index c9f92e8..7061d4d 100644
--- a/MapTests/MapParserStrategyTests.swift
+++ b/MapTests/MapParserStrategyTests.swift
@@ -113,11 +113,11 @@ struct MapParserStrategyTests {
#expect(!strategy.canHandle(line: "Invalid line"))
}
- @Test func testBlockerParserStrategyCanHandle() async throws {
- let strategy = BlockerParserStrategy()
+ @Test func testInertiaParserStrategyCanHandle() async throws {
+ let strategy = InertiaParserStrategy()
- #expect(strategy.canHandle(line: "[Blocker] Node A"))
- #expect(strategy.canHandle(line: "[Blocker] Multi Word Node"))
+ #expect(strategy.canHandle(line: "[Indertia] Node A"))
+ #expect(strategy.canHandle(line: "[Inertia] Multi Word Node"))
#expect(!strategy.canHandle(line: "Node A (10, 20)"))
#expect(!strategy.canHandle(line: "[Note] (10, 20) Test"))
@@ -132,7 +132,7 @@ struct MapParserStrategyTests {
#expect(strategy.canHandle(line: "[Evolution] Multi Word Node +5.5"))
#expect(!strategy.canHandle(line: "Node A (10, 20)"))
- #expect(!strategy.canHandle(line: "[Blocker] Node A"))
+ #expect(!strategy.canHandle(line: "[Inertia] Node A"))
#expect(!strategy.canHandle(line: "Invalid line"))
}