Skip to content

Commit 99a467d

Browse files
committed
SNOW-2306184: rename processor class used for tests
1 parent 9323a75 commit 99a467d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/nativeapp/codegen/test_compiler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def test_find_and_execute_processors_exception(test_proj_def, test_compiler):
122122
test_compiler.compile_artifacts()
123123

124124

125-
class TestProcessor(ArtifactProcessor):
125+
class AcmeProcessor(ArtifactProcessor):
126126
NAME = "test_processor"
127127

128128
def __init__(self, *args, **kwargs):
@@ -148,7 +148,7 @@ def test_skips_disabled_processors(test_proj_def, test_compiler):
148148
{"dest": "./", "src": "app/*", "processors": ["test_processor"]}
149149
]
150150
test_compiler = NativeAppCompiler(_get_bundle_context(pkg_model))
151-
test_compiler.register(TestProcessor)
151+
test_compiler.register(AcmeProcessor)
152152

153153
# TestProcessor is never invoked, otherwise calling its methods will make the test fail
154154
test_compiler.compile_artifacts()

0 commit comments

Comments
 (0)