Skip to content

Commit

Permalink
fix expected output
Browse files Browse the repository at this point in the history
  • Loading branch information
v923z committed May 13, 2021
1 parent 28a05c8 commit 2768b0f
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions tests/common/gc.py.exp
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
from ulab import numpy as np
import gc

data = np.ones(1000)[6:-6]
print(sum(data))
print(data)

gc.collect()

print(sum(data))
print(data)
988.0000000000001
array([1.0, 1.0, 1.0, ..., 1.0, 1.0, 1.0], dtype=float64)
988.0000000000001
array([1.0, 1.0, 1.0, ..., 1.0, 1.0, 1.0], dtype=float64)

0 comments on commit 2768b0f

Please sign in to comment.