Skip to content

Commit

Permalink
Increase test coverage (#12497)
Browse files Browse the repository at this point in the history
  • Loading branch information
taehoonlee authored and fchollet committed Mar 17, 2019
1 parent c82fe8a commit a11bf06
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/test_model_saving.py
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,7 @@ def test_saving_model_with_long_weights_names():
f = x
for i in range(4):
f = Dense(2, name='nested_model_dense_%d' % (i,))(f)
f = Dense(2, name='nested_model_dense_4', trainable=False)(f)
# This layer name will make the `weights_name`
# HDF5 attribute blow out of proportion.
f = Dense(2, name='nested_model_output' + ('x' * (2**15)))(f)
Expand Down

0 comments on commit a11bf06

Please sign in to comment.