Skip to content

Commit

Permalink
Fix failing batch test
Browse files Browse the repository at this point in the history
  • Loading branch information
mbklein committed Jan 29, 2025
1 parent 72c7baf commit 1d82c00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/test/meadow/batches_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ defmodule Meadow.BatchesTest do
add = %{
descriptive_metadata: %{
box_name: ["His Airness"],
date_created: [%{edtf: "1009"}, %{edtf: "100X"}, %{edtf: "~1968?"}]
date_created: [%{edtf: "1009"}, %{edtf: "100X"}, %{edtf: "1968%"}]
}
}

Expand Down Expand Up @@ -211,7 +211,7 @@ defmodule Meadow.BatchesTest do
assert work.descriptive_metadata.date_created == [
%{edtf: "1009", humanized: "1009"},
%{edtf: "100X", humanized: "1000s"},
%{edtf: "~1968", humanized: "circa 1968?"}
%{edtf: "1968%", humanized: "circa 1968?"}
]
end)
end
Expand Down

0 comments on commit 1d82c00

Please sign in to comment.