From e04c4e30d8e036f68168408762fc4cd57e6c6723 Mon Sep 17 00:00:00 2001 From: Chris Meyers Date: Thu, 6 Jul 2017 11:22:16 -0400 Subject: [PATCH] update tests to fix the removal of the word Tower --- awx/main/tests/functional/commands/test_cleanup_facts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/tests/functional/commands/test_cleanup_facts.py b/awx/main/tests/functional/commands/test_cleanup_facts.py index 26a2a5fada..35a531fe86 100644 --- a/awx/main/tests/functional/commands/test_cleanup_facts.py +++ b/awx/main/tests/functional/commands/test_cleanup_facts.py @@ -108,7 +108,7 @@ def test_system_tracking_feature_disabled(mocker): cmd = Command() with pytest.raises(CommandError) as err: cmd.handle(None) - assert 'The System Tracking feature is not enabled for your Tower instance' in err.value + assert 'The System Tracking feature is not enabled for your instance' in err.value @mock.patch('awx.main.management.commands.cleanup_facts.feature_enabled', new=mock_feature_enabled)