Skip to content

Commit

Permalink
[TestCases] fix unreachable test cases due to outside the for-loop (#…
Browse files Browse the repository at this point in the history
…14934)

fix unreachable test cases
  • Loading branch information
jikechao authored May 24, 2023
1 parent 35ac226 commit 172120a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/python/frontend/keras/test_forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ def test_forward_batch_norm(self, keras_mod):
for batch_norm_func in batch_norm_funcs:
x = batch_norm_func(data)
keras_model = keras_mod.models.Model(data, x)
verify_keras_frontend(keras_model)
verify_keras_frontend(keras_model)

def test_forward_upsample(self, keras_mod, interpolation="nearest"):
data = keras_mod.layers.Input(shape=(32, 32, 3))
Expand Down

0 comments on commit 172120a

Please sign in to comment.