Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
smdn committed Dec 23, 2022
1 parent 48a4c36 commit 2d3bee8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Smdn.Text.Ondulish/Smdn.Text.Ondulish/Translator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public void Translate_ToTextWriter_OutputNull([Values(true, false)] bool convert
{
using var t = Create();

Assert.Throws<ArgumentNullException>(() => t.Translate(input: null!, convertKatakanaToNarrow: convertKatakanaToNarrow, output: null!));
Assert.Throws<ArgumentNullException>(() => t.Translate(input: string.Empty, convertKatakanaToNarrow: convertKatakanaToNarrow, output: null!));
}

[TestCase("オンドゥル", "オンドゥル")]
Expand Down

0 comments on commit 2d3bee8

Please sign in to comment.