Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/vector/v.rast.move/tests/test_v_rast_move.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import pytest

import grass.script as gs
from grass.exceptions import CalledModuleError


def test_displacement_result(line_dataset):
Expand Down Expand Up @@ -61,7 +62,7 @@ def test_nulls_as_zeros(line_dataset):
def test_nulls_fail(line_dataset):
"""Check that an error is generated for nulls"""
result = "result_fails"
with pytest.raises(gs.CalledModuleError):
with pytest.raises(CalledModuleError):
gs.run_command(
"v.rast.move",
input=line_dataset.name,
Expand Down