Skip to content

Commit

Permalink
Correct the expected diff
Browse files Browse the repository at this point in the history
After fixing an off-by-one error at #75
Some tests are failed due to the reason specified at #77
After the discussion, we agree that we should fix it by changing
the order of the expected diff
  • Loading branch information
tiendo1011 committed Dec 22, 2021
1 parent c2a5b87 commit 2b0a45d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ def correct_forward_diff
],
[
['-', 8, 'n'],
['-', 9, 'p'],
['+', 9, 'r'],
['-', 9, 'p'],
['+', 10, 's'],
['+', 11, 't']
]
Expand All @@ -148,10 +148,10 @@ def correct_backward_diff
],
[
['-', 9, 'r'],
['-', 10, 's'],
['+', 8, 'n'],
['-', 11, 't'],
['+', 9, 'p']
['-', 10, 's'],
['+', 9, 'p'],
['-', 11, 't']
]
]
end
Expand Down

0 comments on commit 2b0a45d

Please sign in to comment.