Skip to content

Commit 018c0dd

Browse files
committed
reverting back to utils
1 parent 730150b commit 018c0dd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

code/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from adal.adal_error import AdalError
1010
from msrest.exceptions import AuthenticationError
1111
from json import JSONDecodeError
12-
from actionutils import AMLConfigurationException, AMLExperimentConfigurationException, required_parameters_provided, mask_parameter, convert_to_markdown, load_pipeline_yaml, load_runconfig_yaml, load_runconfig_python
12+
from utils import AMLConfigurationException, AMLExperimentConfigurationException, required_parameters_provided, mask_parameter, convert_to_markdown, load_pipeline_yaml, load_runconfig_yaml, load_runconfig_python
1313

1414

1515
def submitRun(args):
File renamed without changes.

tests/test_basic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ def test_credentialErrorException():
2727
"""unit Test to verify that in azure credentials are not present code must raise the error """
2828
os.environ["INPUT_AZURE_CREDENTIALS"] = ''
2929
import main
30-
import actionutils
31-
with pytest.raises(actionutils.AMLConfigurationException):
30+
import utils
31+
with pytest.raises(utils.AMLConfigurationException):
3232
assert main.main()
3333

3434
def test_parametersfileError():

0 commit comments

Comments
 (0)