Skip to content

Commit acfa42e

Browse files
committed
Fix import assertion in ARC smoke test for accurate validation
1 parent a5e7cee commit acfa42e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dockerfiles/docker_tests/test_docker_smoke.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def test_import_arc():
1010
"""Test that ARC can be imported in the docker image."""
1111
try:
1212
import arc
13-
assert hasattr(arc, '__version__')
13+
assert hasattr(arc, '__file__')
1414
except ImportError as e:
1515
pytest.fail(f"ImportError: {e}")
1616

0 commit comments

Comments
 (0)