We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is valid when super_diff is not installed.
expect(ids).to match_array(single_id)
With super_diff installed it fails with
Failure/Error: expect(ids).to match_array(single_id) NoMethodError: undefined method `each_with_index' for "my_id":String Did you mean? each_line
I had to update the test to
- expect(ids).to match_array(single_id) + expect(ids).to match_array([single_id])
The text was updated successfully, but these errors were encountered:
Okay, thanks! I'll check it out and see what's up here.
Sorry, something went wrong.
splitwise#97 - Fixup match array as string
8175d26
This is fixed in 0.5.3+! Closing.
No branches or pull requests
This is valid when super_diff is not installed.
With super_diff installed it fails with
I had to update the test to
The text was updated successfully, but these errors were encountered: