Skip to content

Commit b6ab577

Browse files
committed
Fix failing formatter
1 parent 0473cf9 commit b6ab577

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/axon/loop_test.exs

+5-1
Original file line numberDiff line numberDiff line change
@@ -854,7 +854,11 @@ defmodule Axon.LoopTest do
854854
test "saves a checkpoint on custom events", %{loop: loop} do
855855
data = List.duplicate({Nx.iota({1, 1}), Nx.iota({1, 1})}, 5)
856856

857-
assert %Axon.Loop.State{epoch: 3, iteration: 0, event_counts: %{iteration_completed: %{total: 15}}} =
857+
assert %Axon.Loop.State{
858+
epoch: 3,
859+
iteration: 0,
860+
event_counts: %{iteration_completed: %{total: 15}}
861+
} =
858862
loop
859863
|> Map.put(:output_transform, & &1)
860864
|> Loop.checkpoint(event: :iteration_completed, filter: [every: {:epoch, 2}])

0 commit comments

Comments
 (0)