Skip to content

Commit

Permalink
fix: test var name
Browse files Browse the repository at this point in the history
  • Loading branch information
RuslanBergenov committed Nov 1, 2023
1 parent 17cd2c4 commit a457875
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions tests/test_flatten_ga_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class TestCFFlattenMethods(BaseUnitTest):
c = Context()
ga_source = GaExportedNestedDataStorage(gcp_project=c.env["project"],
dataset=c.env["dataset"],
table_name=c.env["table_type"],
table_type=c.env["table_type"],
date_shard=c.env["date"],
)

Expand Down Expand Up @@ -63,7 +63,7 @@ class TestCFFlattenMethodsSchemaChangeCollectedTrafficSource(BaseUnitTest):
c = Context()
ga_source = GaExportedNestedDataStorage(gcp_project=c.env["project"],
dataset=c.env["dataset_adswerve"],
table_name=c.env["table_type"],
table_type=c.env["table_type"],
date_shard=c.env["date_collected_traffic_source_added"],
)

Expand All @@ -90,7 +90,7 @@ class TestCFFlattenMethodsSchemaChangeIsActiveUser(BaseUnitTest):
c = Context()
ga_source = GaExportedNestedDataStorage(gcp_project=c.env["project"],
dataset=c.env["dataset_adswerve"],
table_name=c.env["table_type"],
table_type=c.env["table_type"],
date_shard=c.env["date_is_active_user_added"],
)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_flatten_ga_data_intraday.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class TestCFFlattenMethodsIntraday(BaseUnitTest):
c = Context()
ga_source = GaExportedNestedDataStorage(gcp_project=c.env["project"],
dataset=c.env["dataset"],
table_name=c.env["table_type_intraday"],
table_type=c.env["table_type_intraday"],
date_shard=c.env["date_intraday"],
)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_partitioning.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class TestPartitioning(BaseUnitTest):
c = Context()
ga_source = GaExportedNestedDataStorage(gcp_project=c.env["project"],
dataset=c.env["dataset"],
table_name=c.env["table_type"],
table_type=c.env["table_type"],
date_shard=c.env["date"],
)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_verify_queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class TestGenerateQuery(BaseUnitTest):
c = Context()
ga_source = GaExportedNestedDataStorage(gcp_project=c.env["project"],
dataset=c.env["dataset"],
table_name=c.env["table_type"],
table_type=c.env["table_type"],
date_shard=c.env["date"],
)

Expand Down
4 changes: 2 additions & 2 deletions tests/test_verify_queries_schema_change.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class TestGenerateQuerySchemaChange1(BaseUnitTest):
c = Context()
ga_source = GaExportedNestedDataStorage(gcp_project=c.env["project"],
dataset=c.env["dataset"],
table_name=c.env["table_type"],
table_type=c.env["table_type"],
date_shard=c.env["date_collected_traffic_source_added"],
)

Expand Down Expand Up @@ -65,7 +65,7 @@ class TestGenerateQuerySchemaChange2(BaseUnitTest):
c = Context()
ga_source = GaExportedNestedDataStorage(gcp_project=c.env["project"],
dataset=c.env["dataset"],
table_name=c.env["table_type"],
table_type=c.env["table_type"],
date_shard=c.env["date_is_active_user_added"],
)

Expand Down

0 comments on commit a457875

Please sign in to comment.