Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
s7nfo committed Jul 4, 2024
1 parent defe57b commit 8283f58
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions python/tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ def test_tracer(self):
with Tracer() as t:
time.sleep(0.1)

print(t.trace)
self.assertEqual(len(t.trace), 3)

@unittest.skipIf(
Expand All @@ -24,5 +23,4 @@ def test_collector(self):
with Collector() as c:
time.sleep(0.1)

print(c.counters)
self.assertGreater(c.counters.instruction_count, 0)
2 changes: 1 addition & 1 deletion ruby/tests/tests.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def test_tracer
end

puts t
assert_equal 4, t.size
assert_equal 3, t.size
end

def test_collector
Expand Down

0 comments on commit 8283f58

Please sign in to comment.