From e93f82a9f558a83d82021c0fb271aaa9984e31ca Mon Sep 17 00:00:00 2001 From: Kaan Ozkan Date: Tue, 23 Apr 2024 19:03:09 -0400 Subject: [PATCH] Update expectation An internal `send` was removed in https://github.com/sorbet/sorbet/commit/da74886952b3bb21ec9a61f8cb970fe44b3f94a6 which affects the tests --- test/spoom/snapshot_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/spoom/snapshot_test.rb b/test/spoom/snapshot_test.rb index 2e224fb2..9e249dd8 100644 --- a/test/spoom/snapshot_test.rb +++ b/test/spoom/snapshot_test.rb @@ -55,7 +55,7 @@ def test_snapshot_project assert_equal(9, snapshot.classes) assert_equal(1, snapshot.methods_with_sig) assert_equal(13, snapshot.methods_without_sig) - assert_equal(6, snapshot.calls_typed) + assert_equal(5, snapshot.calls_typed) assert_equal(1, snapshot.calls_untyped) assert_equal(1, snapshot.methods_with_sig_excluding_rbis) assert_equal(8, snapshot.methods_without_sig_excluding_rbis) @@ -74,7 +74,7 @@ def test_snapshot_project_without_rbi assert_equal(5, snapshot.classes) assert_equal(1, snapshot.methods_with_sig) assert_equal(8, snapshot.methods_without_sig) - assert_equal(6, snapshot.calls_typed) + assert_equal(5, snapshot.calls_typed) assert_equal(1, snapshot.calls_untyped) assert_equal(1, snapshot.methods_with_sig_excluding_rbis) assert_equal(8, snapshot.methods_without_sig_excluding_rbis)