Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

Commit

Permalink
🔧 flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
tkoyama010 committed May 16, 2020
1 parent 88b4d11 commit 4b48163
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions tests/tests.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import meshio
import numpy as np
from numpy.testing import assert_array_equal
import pytest
Expand Down Expand Up @@ -29,7 +28,7 @@
)

cells1 = [
("hexahedron", np.array([[0, 1, 3, 2, 4, 5, 7, 6], [7, 8, 10, 9, 11, 12, 14, 13]]),)
("hexahedron", np.array([[0, 1, 3, 2, 4, 5, 7, 6], [7, 8, 10, 9, 11, 12, 14, 13]]))
]

faces1 = [
Expand All @@ -56,9 +55,7 @@

# tetra

points2 = np.array(
[[0.0, 0.0, 0.0], [1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0],]
)
points2 = np.array([[0.0, 0.0, 0.0], [1.0, 0.0, 0.0], [0.0, 1.0, 0.0], [0.0, 0.0, 1.0]])

cells2 = [("tetra", np.array([[0, 1, 2, 3]]))]

Expand Down

0 comments on commit 4b48163

Please sign in to comment.