diff options
author | icebaker <icebaker@proton.me> | 2024-01-10 20:23:06 -0300 |
---|---|---|
committer | icebaker <icebaker@proton.me> | 2024-01-10 20:23:06 -0300 |
commit | 552c9c7321895d41f81e460b94182b7a00d2cb88 (patch) | |
tree | a36d105c0f09de5e3adf3f3d74de7b11319f48d4 /spec/logic | |
parent | 3dc22548895718ffc7396227267ecbb4902b62f9 (diff) |
fixing spec
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] } } ) |