Skip to content

Commit f1695dc

Browse files
committed
fix tests by ensuring a copy of pytest.param is passed
1 parent 9ba0011 commit f1695dc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/unit/ng/processor/decoder/test_decoder.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# pylint: disable=protected-access
33
# pylint: disable=line-too-long
44
import json
5+
from copy import deepcopy
56

67
import pytest
78

@@ -11,7 +12,7 @@
1112
from tests.unit.ng.processor.base import BaseProcessorTestCase
1213
from tests.unit.processor.decoder.test_decoder import test_cases as non_ng_test_cases
1314

14-
test_cases = non_ng_test_cases
15+
test_cases = deepcopy(non_ng_test_cases)
1516

1617

1718
class TestDecoder(BaseProcessorTestCase):

0 commit comments

Comments
 (0)