From 2f7c9277c07a36ba55ba4ccb9a9d5ad9bb3c7337 Mon Sep 17 00:00:00 2001
From: Felix Schindler <felix.schindler@wwu.de>
Date: Tue, 21 Jul 2020 15:35:10 +0200
Subject: [PATCH] [P|test] add simplex grid

---
 python/test/grid_provider_cube.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/python/test/grid_provider_cube.py b/python/test/grid_provider_cube.py
index abe767a3b..561da4c43 100644
--- a/python/test/grid_provider_cube.py
+++ b/python/test/grid_provider_cube.py
@@ -19,7 +19,9 @@ from dune.xt.grid import Dim, Cube, Simplex, make_cube_grid
 init_args = (
     (Dim(1), [0], [1], [2]),
     (Dim(2), Cube(), [0, 0], [1, 1], [2, 2]),
+    (Dim(2), Simplex(), [0, 0], [1, 1], [2, 2]),
     (Dim(3), Cube(), [0, 0, 0], [1, 1, 1], [2, 2, 2]),
+    (Dim(3), Simplex(), [0, 0, 0], [1, 1, 1], [2, 2, 2]),
 )
 
 
-- 
GitLab