Skip to content

Commit 7c77e2a

Browse files
committed
Merge branch 'feature_standard_datasets_001' of https://github.com/ghanse/dbldatagen into feature_standard_datasets_001
2 parents 96736d1 + 40f3f72 commit 7c77e2a

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

dbldatagen/datasets/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@
1111
"basic_process_historian",
1212
"basic_telematics",
1313
"basic_user",
14-
"benchmark_groupby"
15-
]
14+
"benchmark_groupby",
15+
"multi_table_telephony_provider"
16+
]

tests/test_standard_dataset_providers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ def test_basic_user_table_retrieval(self, providerName, providerOptions):
206206
if random:
207207
print("")
208208
leadingRows = df.limit(100).collect()
209-
ids = [r.customer_id for r in leadingRows]
210-
assert ids != sorted(ids)
209+
customer_ids = [r.customer_id for r in leadingRows]
210+
assert customer_ids != sorted(customer_ids)
211211

212212
# BENCHMARK GROUPBY tests:
213213
@pytest.mark.parametrize("providerName, providerOptions", [

0 commit comments

Comments
 (0)