Skip to content

Commit 1263e02

Browse files
committed
Remove unused arrays in test
1 parent d7644d3 commit 1263e02

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pymc3/tests/test_distributions_random.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,7 @@ def test_broadcast_shape(self, size):
194194
@pytest.mark.parametrize('shape', [(), (1,), (1, 1), (1, 2), (10, 10, 1), (10, 10, 2)], ids=str)
195195
def test_different_shapes_and_sample_sizes(self, shape):
196196
prefix = self.distribution.__name__
197-
expected = []
198-
actual = []
197+
199198
rv = self.get_random_variable(shape, name='%s_%s' % (prefix, shape))
200199
for size in (None, 1, 5, (4, 5)):
201200
if size is None:

0 commit comments

Comments
 (0)