From f6ba19d4fdd594c30d15b1dbc5e5a03d50381e69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nico=20Schl=C3=B6mer?= Date: Tue, 15 Sep 2020 22:38:46 +0200 Subject: [PATCH] 2d: fix test --- test/test_2d.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_2d.py b/test/test_2d.py index d08b53d..8c0f922 100644 --- a/test/test_2d.py +++ b/test/test_2d.py @@ -12,7 +12,7 @@ def test_2d(): ) assert mesh.points.shape == (276, 2) - assert mesh.cells["triangle"].shape == (486, 3) + assert mesh.get_cells_type("triangle").shape == (486, 3) # # show mesh # import matplotlib.pyplot as plt