Skip to content

Commit

Permalink
Test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
courtneyholcomb committed Sep 21, 2023
1 parent 310f7bb commit 57498ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions metricflow/test/integration/test_cases/itest_dimensions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,11 @@ integration_test:
name: query_dimensions_only
description: Query multiple dimensions without metrics
model: SIMPLE_MODEL
group_bys: ["ds", "user__home_state"]
group_bys: ["ds__day", "user__home_state"]
check_query: |
SELECT
u.home_state AS user__home_state
, v.ds
, v.ds AS ds__day
FROM {{ source_schema }}.fct_id_verifications v
LEFT OUTER JOIN {{ source_schema }}.dim_users u
ON u.user_id = v.user_id
Expand All @@ -142,6 +142,6 @@ integration_test:
SELECT
u.home_state AS user__home_state
FROM {{ source_schema }}.dim_users u
WHERE user__home_state = 'CA'
GROUP BY
u.home_state
WHERE user__home_state = 'CA'

0 comments on commit 57498ec

Please sign in to comment.