From ea8821fbff08f0934be8daffe8f15d98cf84b111 Mon Sep 17 00:00:00 2001 From: Stephen Mardson McQuay Date: Tue, 15 Feb 2011 09:03:33 -0700 Subject: [PATCH] commented out the connectivity construction --- test/2dcubic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/2dcubic.py b/test/2dcubic.py index 3b1adff..4b8ea24 100755 --- a/test/2dcubic.py +++ b/test/2dcubic.py @@ -31,7 +31,7 @@ class TestSequenceFunctions(unittest.TestCase): self.X = [0.55, 0.45] self.g = grid(self.verts, self.q) - self.g.construct_connectivity() + # self.g.construct_connectivity() self.R = self.g.create_mesh(range(3)) self.exact = exact_func(self.X)