Skip to content

Commit

Permalink
fix tests directory name in Makefile (#134)
Browse files Browse the repository at this point in the history
* fix tests directory name in Makefile

* fix black warning

Co-authored-by: Vikram Patki <54442035+patkivikram@users.noreply.github.com>
  • Loading branch information
taybin and patkivikram committed Apr 28, 2021
1 parent 71740a3 commit 1a5c431
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -19,7 +19,7 @@ DMYPY ?= dmypy
BANDIT ?= bandit
RENDER_CONFIGREF ?= extra/tools/render_configuration_reference.py
CONFIGREF_TARGET ?= docs/includes/settingref.txt
TESTDIR ?= t
TESTDIR ?= tests
EXAMPLESDIR ?= examples
SPHINX_DIR ?= docs/
SPHINX_BUILDDIR ?= "${SPHINX_DIR}/_build"
Expand Down
4 changes: 2 additions & 2 deletions tests/functional/web/test_cache.py
Expand Up @@ -316,7 +316,7 @@ async def test_redis__url(
password=password,
db=db,
skip_full_coverage_check=True,
**settings
**settings,
)


Expand Down Expand Up @@ -432,7 +432,7 @@ async def model_response(
*,
expected_status: int = 200,
expected_content_type: str = "application/json",
model=ResponseModel
model=ResponseModel,
):
assert response.status == 200
assert response.content_type == expected_content_type
Expand Down

0 comments on commit 1a5c431

Please sign in to comment.