We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 682979f commit 6852223Copy full SHA for 6852223
test/test_merkle_verification.py
@@ -7,7 +7,7 @@
7
from ipfsspec.car import read_car
8
9
10
-# Test data from test/test_car.car
+# Test data from test/testdata.car
11
# Root: QmW3CrGFuFyF3VH1wvrap4Jend5NRTgtESDjuQ7QhHD5dd (directory)
12
# Children:
13
# - default: QmZsn2gmGC6yBs6TWPiRspXfTJ3K4DEtWUePVqBJ84YkU8
@@ -19,9 +19,9 @@
19
20
@pytest.fixture
21
def test_car():
22
- """Load blocks and root CID from test/test_car.car"""
+ """Load blocks and root CID from test/testdata.car"""
23
root_cid = CID.decode("QmW3CrGFuFyF3VH1wvrap4Jend5NRTgtESDjuQ7QhHD5dd")
24
- car_path = Path(__file__).parent / "test_car.car"
+ car_path = Path(__file__).parent / "testdata.car"
25
with open(car_path, "rb") as f:
26
car_data = f.read()
27
0 commit comments