From 1757546802705a7e69df2d2c2196518568d05bea Mon Sep 17 00:00:00 2001 From: ensan-hcl Date: Tue, 15 Jul 2025 09:53:16 -0700 Subject: [PATCH] fix: test build error --- .../DicdataStoreTests/DicdataStoreTests.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/KanaKanjiConverterModuleWithDefaultDictionaryTests/DicdataStoreTests/DicdataStoreTests.swift b/Tests/KanaKanjiConverterModuleWithDefaultDictionaryTests/DicdataStoreTests/DicdataStoreTests.swift index 43098f1..31a219d 100644 --- a/Tests/KanaKanjiConverterModuleWithDefaultDictionaryTests/DicdataStoreTests/DicdataStoreTests.swift +++ b/Tests/KanaKanjiConverterModuleWithDefaultDictionaryTests/DicdataStoreTests/DicdataStoreTests.swift @@ -218,7 +218,7 @@ final class DicdataStoreTests: XCTestCase { do { var c = ComposingText() c.insertAtCursorPosition("999999999999", inputStyle: .roman2kana) - let result = dicdataStore.getWiseDicdata(convertTarget: c.convertTarget, inputData: c, inputRange: 0..<12) + let result = dicdataStore.getWiseDicdata(convertTarget: c.convertTarget, inputData: c, surfaceRange: 0..<12) XCTAssertTrue(result.contains(where: {$0.word == "999999999999"})) XCTAssertTrue(result.contains(where: {$0.word == "九千九百九十九億九千九百九十九万九千九百九十九"})) }