Skip to content

Commit

Permalink
tests: minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
loiccoyle committed Jul 5, 2024
1 parent 1eacf54 commit 83cd37e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/unit/conftest.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from pathlib import Path
import shutil
from pathlib import Path

import pytest

from phomo import Pool, utils


TEST_PATH = Path("test_tiles/")


Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def test_arrays(grid: Grid, master_array):
)


def test_subdivide(grid: Grid, master_array):
def test_subdivide(grid: Grid):
prev_len = len(grid.slices)
grid.subdivide(0.1)
new_len = len(grid.slices)
Expand Down

0 comments on commit 83cd37e

Please sign in to comment.