We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ba0011 commit f1695dcCopy full SHA for f1695dc
tests/unit/ng/processor/decoder/test_decoder.py
@@ -2,6 +2,7 @@
2
# pylint: disable=protected-access
3
# pylint: disable=line-too-long
4
import json
5
+from copy import deepcopy
6
7
import pytest
8
@@ -11,7 +12,7 @@
11
12
from tests.unit.ng.processor.base import BaseProcessorTestCase
13
from tests.unit.processor.decoder.test_decoder import test_cases as non_ng_test_cases
14
-test_cases = non_ng_test_cases
15
+test_cases = deepcopy(non_ng_test_cases)
16
17
18
class TestDecoder(BaseProcessorTestCase):
0 commit comments