Skip to content

Commit

Permalink
Adjusting the namespace for UploadFile for the failing ChangeSetPersi…
Browse files Browse the repository at this point in the history
…ster test suite
  • Loading branch information
jrgriffiniii committed Mar 12, 2020
1 parent 3663ac7 commit f21379d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/change_set_persisters/change_set_persister_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@
allow(upload_file).to receive(:bytestream).and_return(bytestream)
allow(upload_file).to receive(:name).and_return("example.tif")
allow(upload_file).to receive(:id).and_return(upload_file_id)
allow(UploadFile).to receive(:find).and_return([upload_file])
allow(BrowseEverything::UploadFile).to receive(:find).and_return([upload_file])
allow(bytestream).to receive(:download).and_raise(StandardError)
end

Expand Down

0 comments on commit f21379d

Please sign in to comment.