Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
edurdevic committed Sep 29, 2023
1 parent 79db7d3 commit 5f4ba17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/explorer_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def test_execute(spark, info_fetcher, capfd):
data_explorer = DataExplorer("*.*.tb_1", spark, info_fetcher)
data_explorer._sql_query_template = "SELECT 12345 AS a FROM {full_table_name}"

result = DataExplorerActions(data_explorer=data_explorer, spark=spark, info_fetcher=info_fetcher).apply()
result = DataExplorerActions(data_explorer=data_explorer, spark=spark, info_fetcher=info_fetcher).display()
captured = capfd.readouterr()
assert "12345" in captured.out

Expand Down

0 comments on commit 5f4ba17

Please sign in to comment.