Revert "Fixed typo"

This reverts commit 379a5ca539af0e954b1cdf63b9365ad208b9c7f3.
This "typo" is intentional to test the transposition detection by
did_you_mean.
This commit is contained in:
Nobuyoshi Nakada 2020-10-27 23:26:38 +09:00
parent 379a5ca539
commit 8e06075442
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6

View File

@ -32,7 +32,7 @@ class ChangeWordTest < Test::Unit::TestCase
assert_match @cw.transposition(n - 1, +1), 'spec/services/anything_spce'
assert_match @cw.transposition(4, +1), 'specs/ervices/anything_spec'
assert_match @cw.transposition(4, -1), 'spe/cservices/anything_spec'
assert_match @cw.transposition(21, -1), 'spec/services/anything_spec'
assert_match @cw.transposition(21, -1), 'spec/services/anythign_spec'
assert_match @cw.transposition(21, +1), 'spec/services/anythin_gspec'
end
end