remove using RUNTIME_VARS from test

This commit is contained in:
Frode Gundersen 2022-12-06 21:18:19 +00:00 committed by Megan Wilhite
parent 598b652635
commit 3624055e4a

View file

@ -1,15 +1,15 @@
import pytest
import salt.modules.baredoc as baredoc
from tests.support.runtests import RUNTIME_VARS
from tests.support.paths import SALT_CODE_DIR
@pytest.fixture
def configure_loader_modules():
return {
baredoc: {
"__opts__": {"extension_modules": RUNTIME_VARS.SALT_CODE_DIR},
"__grains__": {"saltpath": RUNTIME_VARS.SALT_CODE_DIR},
"__opts__": {"extension_modules": SALT_CODE_DIR},
"__grains__": {"saltpath": SALT_CODE_DIR},
}
}