From 0dda66456c909fb03a68b802161429e87fa5212e Mon Sep 17 00:00:00 2001 From: Christopher Pickering Date: Wed, 1 Dec 2021 10:36:51 +0100 Subject: [PATCH] passed test --- tests/test_djlint.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_djlint.py b/tests/test_djlint.py index 174f6cd..8b74c90 100644 --- a/tests/test_djlint.py +++ b/tests/test_djlint.py @@ -7,7 +7,7 @@ run:: for a single test:: - pytest tests/test_djlint.py::test_stdin --cov=src/djlint \ + pytest tests/test_djlint.py::test_help --cov=src/djlint \ --cov-branch --cov-report xml:coverage.xml --cov-report term-missing or:: @@ -33,7 +33,7 @@ from .conftest import write_to_file def test_help(runner: CliRunner) -> None: result = runner.invoke(djlint, ["-h"]) assert result.exit_code == 0 - assert "djLint · lint and reformat HTML templates." in result.output + assert "djLint · HTML template linter and formatter." in result.output def test_bad_args(runner: CliRunner) -> None: