diff --git a/temba/channels/tests.py b/temba/channels/tests.py index 8e2e25676c..57061614b3 100644 --- a/temba/channels/tests.py +++ b/temba/channels/tests.py @@ -592,8 +592,8 @@ def test_claim_all(self): self.assertEqual(response.context["channel_types"]["SOCIAL_MEDIA"][0].code, "D3C") self.assertEqual(response.context["channel_types"]["SOCIAL_MEDIA"][1].code, "FBA") self.assertEqual(response.context["channel_types"]["SOCIAL_MEDIA"][2].code, "IG") - self.assertEqual(response.context["channel_types"]["SOCIAL_MEDIA"][-2].code, "WC") - self.assertEqual(response.context["channel_types"]["SOCIAL_MEDIA"][-1].code, "ZVW") + self.assertEqual(response.context["channel_types"]["SOCIAL_MEDIA"][-2].code, "ZVW") + self.assertEqual(response.context["channel_types"]["SOCIAL_MEDIA"][-1].code, "WC") self.admin.groups.add(Group.objects.get(name="Beta")) diff --git a/temba/flows/legacy/tests.py b/temba/flows/legacy/tests.py index 1c4555f7a8..649d73922b 100644 --- a/temba/flows/legacy/tests.py +++ b/temba/flows/legacy/tests.py @@ -1040,7 +1040,7 @@ def test_migrate_sample_flows(self): email_node = order_checker.get_definition()["nodes"][10] email_action = email_node["actions"][1] - self.assertEqual(["admin@textit.com"], email_action["addresses"]) + self.assertEqual(["admin@weni.ai"], email_action["addresses"]) def test_migrate_bad_group_names(self): # This test makes sure that bad contact groups (< 25, etc) are migrated forward properly.