Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba authored Jun 28, 2024
1 parent c9a47ee commit cab051a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/unit/user_dict/test_user_dict_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class UserDictWordInputs(TypedDict):


def generate_model() -> UserDictWordInputs:
"""テスト用に UserDictWord の引数からなる辞書を生成する。"""
"""テスト用に UserDictWord の要素を生成する。"""
return {
"surface": "テスト",
"priority": 0,
Expand All @@ -47,7 +47,7 @@ def generate_model() -> UserDictWordInputs:


def test_valid_word() -> None:
"""generate_model 関数は UserDictWord の引数からなる辞書を生成する。"""
"""generate_model 関数は UserDictWord の要素を生成する。"""
# Outputs
args = generate_model()

Expand All @@ -56,7 +56,7 @@ def test_valid_word() -> None:


def test_convert_to_zenkaku() -> None:
"""UserDictWord は surface を全角化する。"""
"""UserDictWord は surface を全角にする。"""
# Inputs
test_value = generate_model()
test_value["surface"] = "test"
Expand Down

0 comments on commit cab051a

Please sign in to comment.