diff options
Diffstat (limited to 'spec/logic')
-rw-r--r-- | spec/logic/helpers/hash_spec.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/spec/logic/helpers/hash_spec.rb b/spec/logic/helpers/hash_spec.rb index 5e4ec60..7c8ff58 100644 --- a/spec/logic/helpers/hash_spec.rb +++ b/spec/logic/helpers/hash_spec.rb @@ -10,7 +10,6 @@ RSpec.describe NanoBot::Logic::Helpers::Hash do end it 'stringify keys' do - pp described_class.stringify_keys({ a: 'b', c: { d: [:e] } }) expect(described_class.stringify_keys({ a: 'b', c: { d: [:e] } })).to eq( { 'a' => 'b', 'c' => { 'd' => [:e] } } ) |