Skip to content

Commit 15f33d5

Browse files
eilmivCopilot
andauthored
Fix order in assert_equal tests
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent c2a05f3 commit 15f33d5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/unit/ingestors/oai_pmh_test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ class OaiPmhTest < ActiveSupport::TestCase
4242
OAI::Client.stub(:new, FakeClient.new([], [])) do
4343
@ingestor.read('https://example.org')
4444
end
45-
assert_equal @ingestor.materials, []
46-
assert_equal @ingestor.events, []
45+
assert_equal [], @ingestor.materials
46+
assert_equal [], @ingestor.events
4747
end
4848

4949
test 'should read dublin core material' do

0 commit comments

Comments
 (0)