Skip to content

Commit

Permalink
Merge pull request #75 from samvera/change-manifest-nil
Browse files Browse the repository at this point in the history
fix manifest test that was misread by me in an earlier change
  • Loading branch information
cjcolvar authored Oct 3, 2022
2 parents 94d45c0 + 51c57a5 commit 1d4e3d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/lib/iiif_manifest/v3/manifest_factory_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def sequence_rendering
expect(result['type']).to eq 'Manifest'
end
it "doesn't build manifests" do
expect(result.key?('metadata')).to be false
expect(result.key?('manifest')).to be false
end
it 'builds items array from all the child file sets' do
expect(result['items'].length).to eq 2
Expand All @@ -427,7 +427,7 @@ def sequence_rendering
expect(result['type']).to eq 'Manifest'
end
it "doesn't build manifests" do
expect(result.key?('metadata')).to be false
expect(result.key?('manifest')).to be false
end
it 'builds items array from all the child file sets' do
expect(result['items'].length).to eq 1
Expand Down

0 comments on commit 1d4e3d0

Please sign in to comment.