Skip to content

Commit

Permalink
Remove test for empty sequence space
Browse files Browse the repository at this point in the history
  • Loading branch information
bartvm committed Jul 31, 2017
1 parent bbb5deb commit 8043803
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_flatten.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from autograd import make_vjp, grad

def test_flatten():
val = (npr.randn(4), [npr.randn(3,4), 2.5], (), (2.0, [1.0, npr.randn(2)]))
val = (npr.randn(4), [npr.randn(3,4), 2.5], (2.0, [1.0, npr.randn(2)]))
vect, unflatten = flatten(val)
val_recovered = unflatten(vect)
vect_2, _ = flatten(val_recovered)
Expand Down

0 comments on commit 8043803

Please sign in to comment.