File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1408,14 +1408,14 @@ def test_missing_operator():
14081408 a = blosc2 .arange (10 , urlpath = "a.b2nd" , mode = "w" )
14091409 b = blosc2 .arange (10 , urlpath = "b.b2nd" , mode = "w" )
14101410 expr = blosc2 .lazyexpr ("a + b" )
1411- c = expr .save ("expr.b2nd" , mode = "w" )
1411+ expr .save ("expr.b2nd" , mode = "w" )
14121412 # Remove the file for operand b
14131413 blosc2 .remove_urlpath ("b.b2nd" )
14141414 # Re-open the lazy expression
14151415 with pytest .raises (blosc2 .exceptions .MissingOperands ) as excinfo :
14161416 blosc2 .open ("expr.b2nd" )
14171417
1418- # Check that some operand is missing"
1418+ # Check that some operand is missing
14191419 assert "a" not in excinfo .value .missing_ops
14201420 assert excinfo .value .missing_ops ["b" ] == pathlib .Path ("b.b2nd" )
14211421 assert excinfo .value .expr == "a + b"
You can’t perform that action at this time.
0 commit comments