We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bc4433 commit beb6214Copy full SHA for beb6214
spec/integration/patches/sandbox_spec.rb
@@ -33,8 +33,8 @@
33
run_console_commands('Redis.new.set("test", "value")')
34
35
# Run a new console session to ensure the redis changes were not saved
36
- result = run_console_commands('puts "Redis.get(\'test\') = #{Redis.new.get(\'test\').nil?}"') # rubocop:disable Lint/InterpolationCheck Layout/LineLength
37
- expect(result.stdout).to include('Redis.get("test") = true')
+ result = run_console_commands('puts "Redis.get(\'test\') = #{Redis.new.get(\'test\')}"') # rubocop:disable Lint/InterpolationCheck Layout/LineLength
+ expect(result.stdout).to include('Redis.get("test") = nil')
38
end
39
40
it "lets the user know that an operation could not be completed" do
0 commit comments