Skip to content

Commit 491c4f8

Browse files
committed
Integrate mix_utils directory into package
The migrated test script demonstrates the module import pattern for consumers. Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
1 parent 6aaa572 commit 491c4f8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
File renamed without changes.

mix_utils/test_duplicate.py renamed to tests/test_duplicate.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import uuid
22
from typing import Any, Union
33

4-
import utils
4+
from case_mapping import mix_utils
55

66

77
def check_app_name(
88
app_name: str, app_names: list[str], app_objects: list[dict[str, Any]], uuid: str
99
) -> dict[str, Any]:
10-
# c_check = utils.CheckDuplicate()
11-
observable_app = utils.check_value(
10+
# c_check = mix_utils.CheckDuplicate()
11+
observable_app = mix_utils.check_value(
1212
app_name,
1313
uuid,
1414
value=app_name,
@@ -26,8 +26,8 @@ def check_geo_coordinates(
2626
geo_objects: list[dict[str, Any]],
2727
uuid: str,
2828
) -> dict[str, Any]:
29-
# c_check = utils.CheckDuplicate()
30-
observable_app = utils.check_value(
29+
# c_check = mix_utils.CheckDuplicate()
30+
observable_app = mix_utils.check_value(
3131
latitude,
3232
longitude,
3333
uuid,

0 commit comments

Comments
 (0)