Skip to content

Commit de40ec9

Browse files
committed
Remove null test
1 parent 8eb88f0 commit de40ec9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/tonpy/tests/test_cell.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ def test_begin_parse():
4242
c = Cell("te6ccuEBAQEABQAKAAVBX/xo8FXp")
4343
assert isinstance(c.begin_parse(), CellSlice)
4444

45-
46-
def test_null():
47-
c = Cell()
48-
assert c.is_null() is True
49-
50-
c = Cell("te6ccuEBAQEABQAKAAVBX/xo8FXp")
51-
assert c.is_null() is False
45+
# Now on Cell() creates empty cell with 0 bits / 0 refs
46+
# def test_null():
47+
# c = Cell()
48+
# assert c.is_null() is True
49+
#
50+
# c = Cell("te6ccuEBAQEABQAKAAVBX/xo8FXp")
51+
# assert c.is_null() is False
5252

5353

5454
def test_get_hash():

0 commit comments

Comments
 (0)