Skip to content

Commit

Permalink
Fix ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
muddymudskipper authored Nov 12, 2024
1 parent f961267 commit 971ac93
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tests/test_splitnt.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ def test_filesystem_size_header() -> None:
@pytest.mark.usefixtures("setup")
def test_api_size() -> None:
"""Test split by size using API"""
error = False
SplitFilePlugin(
input_filename="test.nt",
chunk_size=6,
Expand All @@ -119,7 +118,6 @@ def test_api_size() -> None:
@pytest.mark.usefixtures("setup")
def test_filesystem_size_delete() -> None:
"""Test split by size using file system and delete input file"""
error = False
SplitFilePlugin(
input_filename="test.nt",
chunk_size=6,
Expand All @@ -143,7 +141,6 @@ def test_filesystem_size_delete() -> None:
@pytest.mark.usefixtures("setup")
def test_api_size_delete() -> None:
"""Test split by size using API and delete input file"""
error = False
SplitFilePlugin(
input_filename="test.nt",
chunk_size=6,
Expand Down Expand Up @@ -172,7 +169,6 @@ def test_api_size_delete() -> None:
@pytest.mark.usefixtures("setup")
def test_filesystem_lines() -> None:
"""Test split by lines using file system"""
error = False
SplitFilePlugin(
input_filename="test.nt",
chunk_size=40,
Expand All @@ -192,7 +188,6 @@ def test_filesystem_lines() -> None:
@pytest.mark.usefixtures("setup")
def test_filesystem_lines_header() -> None:
"""Test split by lines with header using file system"""
error = False
SplitFilePlugin(
input_filename="test.nt",
chunk_size=40,
Expand Down

0 comments on commit 971ac93

Please sign in to comment.