diff options
author | Shane McDonald <me@shanemcd.com> | 2021-06-09 18:41:34 +0200 |
---|---|---|
committer | Jeff Bradberry <jeff.bradberry@gmail.com> | 2021-06-09 19:48:23 +0200 |
commit | f882ac420d473f6b4950ce7e62118250375dd63e (patch) | |
tree | 88b8f9917c8e6788cc5e06452ad7299cd1737de0 /awx_collection | |
parent | Remove usage of AWXReceptorJob in metadata.py (diff) | |
download | awx-f882ac420d473f6b4950ce7e62118250375dd63e.tar.xz awx-f882ac420d473f6b4950ce7e62118250375dd63e.zip |
Fix tests
Diffstat (limited to 'awx_collection')
-rw-r--r-- | awx_collection/test/awx/conftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/awx_collection/test/awx/conftest.py b/awx_collection/test/awx/conftest.py index dcd75fee11..728df5e15c 100644 --- a/awx_collection/test/awx/conftest.py +++ b/awx_collection/test/awx/conftest.py @@ -265,7 +265,7 @@ def silence_warning(): @pytest.fixture def execution_environment(): - return ExecutionEnvironment.objects.create(name="test-ee", description="test-ee", managed_by_tower=True) + return ExecutionEnvironment.objects.create(name="test-ee", description="test-ee", managed_by_tower=False) @pytest.fixture(scope='session', autouse=True) |