From 5861bd399fa914207e507a4764b5d50b7d783722 Mon Sep 17 00:00:00 2001 From: Inclusive Coding Bot <102100353+inclusive-coding-bot@users.noreply.github.com> Date: Mon, 4 Apr 2022 20:17:34 -0400 Subject: [PATCH] chore: Switch to gender neutral terms (#19460) * Switch to gender neutral terms * Update countries.md Co-authored-by: inclusive-coding-bot --- tests/integration_tests/druid_tests.py | 2 +- tests/integration_tests/queries/api_tests.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/integration_tests/druid_tests.py b/tests/integration_tests/druid_tests.py index a9c787ecc8a8d..66f5cc7244fc5 100644 --- a/tests/integration_tests/druid_tests.py +++ b/tests/integration_tests/druid_tests.py @@ -290,7 +290,7 @@ def check(): .one() ) # columns and metrics are not deleted if config is changed as - # user could define his own dimensions / metrics and want to keep them + # user could define their own dimensions / metrics and want to keep them assert set([c.column_name for c in druid_ds.columns]) == set( ["affiliate_id", "campaign", "first_seen", "second_seen"] ) diff --git a/tests/integration_tests/queries/api_tests.py b/tests/integration_tests/queries/api_tests.py index d086e1082108e..eaf4e00576573 100644 --- a/tests/integration_tests/queries/api_tests.py +++ b/tests/integration_tests/queries/api_tests.py @@ -210,7 +210,7 @@ def test_get_query_no_data_access(self): get_example_database().id, gamma2.id, gamma2_client_id ) - # Gamma1 user, only sees his own queries + # Gamma1 user, only sees their own queries self.login(username="gamma_1", password="password") uri = f"api/v1/query/{query_gamma2.id}" rv = self.client.get(uri) @@ -219,7 +219,7 @@ def test_get_query_no_data_access(self): rv = self.client.get(uri) self.assertEqual(rv.status_code, 200) - # Gamma2 user, only sees his own queries + # Gamma2 user, only sees their own queries self.logout() self.login(username="gamma_2", password="password") uri = f"api/v1/query/{query_gamma1.id}"