Skip to content
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions spec/lib/data_pull_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@
['does-not-exist', '[NOT FOUND]', '[NOT FOUND]', '[NOT FOUND]'],
]

expect(result.table).to eq(expected_table)
expect(result.table).to match_array(expected_table)
Comment thread
olatifflexion marked this conversation as resolved.
expect(result.subtask).to eq('uuid-export')
expect(result.uuids).to match_array([user1.uuid, user2.uuid])
end
Expand All @@ -334,7 +334,7 @@
['does-not-exist', '[NOT FOUND]', '[NOT FOUND]', '[NOT FOUND]'],
]

expect(result.table).to eq(expected_table)
expect(result.table).to match_array(expected_table)
expect(result.subtask).to eq('uuid-export')
expect(result.uuids).to match_array([user1.uuid])
end
Expand Down