From 51a4e881da3be605894077c0904aa82d2166e25d Mon Sep 17 00:00:00 2001 From: James Hensman Date: Fri, 15 May 2015 09:02:48 +0100 Subject: [PATCH] small bug in cython tests --- GPy/testing/cython_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPy/testing/cython_tests.py b/GPy/testing/cython_tests.py index 6c8c4c0f..f88f12f3 100644 --- a/GPy/testing/cython_tests.py +++ b/GPy/testing/cython_tests.py @@ -9,7 +9,7 @@ These tests make sure that the opure python and cython codes work the same class CythonTestChols(np.testing.TestCase): def setUp(self): - self.flat = np.random.randn(5,45) + self.flat = np.random.randn(45,5) self.triang = np.array([np.eye(20) for i in range(3)]) def test_flat_to_triang(self): L1 = choleskies._flat_to_triang_pure(self.flat)