Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fchollet committed Aug 30, 2023
1 parent 7c7ed95 commit e63e94c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keras_core/testing/test_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,9 @@ def run_output_asserts(layer, output, eager=False):
elif isinstance(expected_output_shape, list):
self.assertTrue(isinstance(output, list))
self.assertEqual(
len(output.keys()),
len(output),
len(
expected_output_shape.keys(),
expected_output_shape,
msg="Unexpected number of outputs",
),
)
Expand Down

0 comments on commit e63e94c

Please sign in to comment.