Skip to content

Commit

Permalink
Improve test suite (#425)
Browse files Browse the repository at this point in the history
* Improve test suite

* update
  • Loading branch information
goodwanghan authored Feb 2, 2023
1 parent 8c04e9f commit 2aeb33a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fugue_test/builtin_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
PandasDataFrame,
PartitionSpec,
Processor,
QPDPandasEngine,
Schema,
SqliteEngine,
Transformer,
cotransformer,
output_cotransformer,
Expand Down Expand Up @@ -864,7 +864,7 @@ def test_aggregate(self):
dag.run(self.engine)

def test_select(self):
class MockEngine(SqliteEngine):
class MockEngine(QPDPandasEngine):
def __init__(self, execution_engine, p: int = 0):
super().__init__(execution_engine)
self.p = p
Expand Down Expand Up @@ -901,7 +901,7 @@ def select(self, dfs, statement):
"AS t1 INNER JOIN",
b,
"AS t2 ON t1.x=t2.x",
sql_engine="sqlite",
sql_engine="qpdpandas",
).assert_eq(c)

# specify sql engine and params
Expand Down

0 comments on commit 2aeb33a

Please sign in to comment.