Skip to content

Commit

Permalink
long was removed in Python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored and yonghong-song committed Jul 17, 2019
1 parent 2a2661c commit d2cd9d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/python/test_lru.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ def test_lru_percpu_hash(self):
sum = stats_map.sum(stats_map.Key(0))
avg = stats_map.average(stats_map.Key(0))
max = stats_map.max(stats_map.Key(0))
self.assertGreater(sum.value, 0L)
self.assertGreater(max.value, 0L)
self.assertGreater(sum.value, 0)
self.assertGreater(max.value, 0)
b.detach_kprobe(event_name)

if __name__ == "__main__":
Expand Down

0 comments on commit d2cd9d0

Please sign in to comment.