summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoricebaker <icebaker@proton.me>2024-01-10 20:23:06 -0300
committericebaker <icebaker@proton.me>2024-01-10 20:23:06 -0300
commit552c9c7321895d41f81e460b94182b7a00d2cb88 (patch)
treea36d105c0f09de5e3adf3f3d74de7b11319f48d4
parent3dc22548895718ffc7396227267ecbb4902b62f9 (diff)
fixing spec
-rw-r--r--spec/logic/helpers/hash_spec.rb1
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] } }
)