Skip to content

Commit

Permalink
Change test to match new behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcolvar authored Nov 4, 2024
1 parent 36b2003 commit 7603cc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/jobs/master_file_management_jobs_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
it "should delete masterfile" do
MasterFileManagementJobs::Delete.perform_now(master_file.id)
expect(File.exist? location).to be false
expect(MasterFile.find(master_file.id).file_location).to be_blank
expect(MasterFile.find(master_file.id).file_location).not_to be_blank
end
end

Expand Down

0 comments on commit 7603cc6

Please sign in to comment.