Skip to content

Commit 8c98668

Browse files
committed
fix: test_neuron_mean_norm
1 parent e3d8962 commit 8c98668

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def test_neuron_mean_norm():
7474
)
7575
np.testing.assert_array_equal(
7676
neuron_norm(x.view(-1, 1)).numpy(),
77-
np.asarray([[-5.0], [-4.0], [-3.0], [-2.0], [-1.0], [0.0], [1.0], [2.0], [3.0], [4.0]]),
77+
np.asarray([[5.0], [4.0], [3.0], [2.0], [1.0], [0.0], [1.0], [2.0], [3.0], [4.0]]),
7878
)
7979

8080

0 commit comments

Comments
 (0)