Skip to content

Commit

Permalink
linter added spaces in unit tests
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Rammer <[email protected]>
  • Loading branch information
hamersaw committed Dec 15, 2021
1 parent a8560d9 commit 1d9c8cf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/flytekit/unit/core/test_python_function_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,14 @@ def bar(i: str):

# test missing cache_version
with pytest.raises(ValueError):

@task(cache=True)
def foo_missing_cache_version(i: str):
print(f"{i}")

# test missing cache
with pytest.raises(ValueError):

@task(cache_serialize=True)
def foo_missing_cache(i: str):
print(f"{i}")

0 comments on commit 1d9c8cf

Please sign in to comment.