Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Switch to gender neutral terms #19460

Merged
merged 2 commits into from
Apr 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/integration_tests/druid_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
)
Expand Down
4 changes: 2 additions & 2 deletions tests/integration_tests/queries/api_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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}"
Expand Down