From 4ff8c28fe466c1701a36da4c923b2b7d3bc6f583 Mon Sep 17 00:00:00 2001 From: Cesar Francisco San Nicolas Martinez Date: Wed, 13 Oct 2021 16:46:58 +0200 Subject: [PATCH] Update test_ha.py Fixed minor typo in node type --- awx/main/tests/functional/test_ha.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/tests/functional/test_ha.py b/awx/main/tests/functional/test_ha.py index bda4da35a5..0b4ced53c2 100644 --- a/awx/main/tests/functional/test_ha.py +++ b/awx/main/tests/functional/test_ha.py @@ -14,6 +14,6 @@ def test_multiple_instances(): @pytest.mark.django_db def test_db_localhost(): - Instance.objects.create(hostname='foo', node_type='hybrd') + Instance.objects.create(hostname='foo', node_type='hybrid') Instance.objects.create(hostname='bar', node_type='execution') assert is_ha_environment() is False