Skip to content

Commit 5788cef

Browse files
committed
Test fix
1 parent 9b3ae7c commit 5788cef

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/models/material_test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ class MaterialTest < ActiveSupport::TestCase
167167
assert_equal 2, @material.authors.size
168168
john = @material.authors.find { |a| a.name == 'John Doe' }
169169
assert_not_nil john
170-
assert_equal '0000-0001-1234-5678', john.orcid
170+
assert_equal '0000-0002-1825-0097', john.orcid
171171
end
172172

173173
test 'should set authors from array of Person objects' do
@@ -250,7 +250,7 @@ class MaterialTest < ActiveSupport::TestCase
250250
assert_equal 2, @material.contributors.size
251251
john = @material.contributors.find { |c| c.name == 'John Doe' }
252252
assert_not_nil john
253-
assert_equal '0000-0001-1234-5678', john.orcid
253+
assert_equal '0000-0002-1825-0097', john.orcid
254254
end
255255

256256
test 'should set contributors from array of Person objects' do

0 commit comments

Comments
 (0)