Skip to content

Commit

Permalink
fix spec
Browse files Browse the repository at this point in the history
  • Loading branch information
mileszim committed Aug 28, 2022
1 parent 5bc4433 commit b75f6c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/integration/patches/sandbox_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
run_console_commands('Redis.new.set("test", "value")')

# Run a new console session to ensure the redis changes were not saved
result = run_console_commands('puts "Redis.get(\'test\') = #{Redis.new.get(\'test\').nil?}"') # rubocop:disable Lint/InterpolationCheck Layout/LineLength
expect(result.stdout).to include('Redis.get("test") = true')
result = run_console_commands('puts "Redis.get(\'test\').nil? = #{Redis.new.get(\'test\').nil?}"') # rubocop:disable Lint/InterpolationCheck Layout/LineLength
expect(result.stdout).to include('Redis.get("test").nil? = true')
end

it "lets the user know that an operation could not be completed" do
Expand Down

0 comments on commit b75f6c5

Please sign in to comment.