We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38c0d68 commit 5ecafc6Copy full SHA for 5ecafc6
1 file changed
tests/test_forge.py
@@ -320,13 +320,13 @@ def test_forge_match_dois():
320
assert check_field(res1, "dc.identifier.identifier", "https://dx.doi.org/10.13011/M3B36G") == 0
321
322
# Multiple dois
323
- f.match_dois(["https://dx.doi.org/10.13011/M3B36G", "10.test/1"])
+ f.match_dois(["https://dx.doi.org/10.13011/M3B36G", "10.18126/M23P9G"])
324
res2 = f.search()
325
326
- # res1 is a subset of res2
+ # # res1 is ça subset of res2
327
assert len(res2) > len(res1)
328
assert all([r1 in res2 for r1 in res1])
329
- assert check_field(res2, "dc.identifier.identifier", "10.test/1") == 2
+ assert check_field(res2, "dc.identifier.identifier", "10.18126/M23P9G") == 2
330
331
# No doi
332
assert f.match_dois("") == f
0 commit comments