From d1afde8bc8273c118b1d6a1e868dc1e7a1d1dda6 Mon Sep 17 00:00:00 2001 From: Wessel Bruinsma Date: Mon, 23 Sep 2024 15:29:38 +0200 Subject: [PATCH] Fix typo --- tests/test_checkpoint_adaptation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_checkpoint_adaptation.py b/tests/test_checkpoint_adaptation.py index 49fa97e..371656f 100644 --- a/tests/test_checkpoint_adaptation.py +++ b/tests/test_checkpoint_adaptation.py @@ -55,6 +55,6 @@ def test_adapt_checkpoint_max_history_twice(model, checkpoint): assert weight.shape[2] == model.max_history_size for j in range(weight.shape[2]): if j >= checkpoint[name].shape[2]: - np.testing.assert_allcllose(weight[:, :, j, :, :], 0 * weight[:, :, j, :, :]) + np.testing.assert_allclose(weight[:, :, j, :, :], 0 * weight[:, :, j, :, :]) else: np.testing.assert_allclose(weight[:, :, j, :, :], checkpoint[name][:, :, j, :, :])