Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add another to_i conversion before doing inequality check
  • Loading branch information
Deer-Spangle committed Aug 18, 2023
commit 91e3805c8f407403a211d4bf66e0bbb571d1df6f
2 changes: 1 addition & 1 deletion tests/integration/fa_parsing_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@
expect(favs_next.length).to be > (72 - 58)
expect(favs_next[0][:fav_id]).to eql(fav_id_next)
favs_next.each do |fav|
expect(fav[:fav_id]).to be < fav_id
expect(fav[:fav_id].to_i).to be < fav_id.to_i
end
end

Expand Down