Skip to content

Commit

Permalink
small text assert
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamannett committed Jul 30, 2023
1 parent a1b4d16 commit d0903da
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,15 @@
runner = CliRunner()


def test_list():
# local test
def test_list_app():
result = runner.invoke(app, ["list", "local", "--all"])
assert result.exit_code == 0

# some of the other columns may be cut off by Rich
assert "Name" in result.stdout

result = runner.invoke(app, ["list", "remote"])
assert result.exit_code == 0
assert "Minari datasets in Farama server" in result.stdout


@pytest.mark.parametrize(
Expand Down

0 comments on commit d0903da

Please sign in to comment.