Skip to content

Commit

Permalink
Fix py3 test
Browse files Browse the repository at this point in the history
  • Loading branch information
fchollet committed Feb 6, 2016
1 parent f3fd56d commit 359f91f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/keras/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ def output_shape(input_shapes):
# test "join" mode in Lambda
def difference(input_dict):
assert(len(input_dict) == 2)
keys = input_dict.keys()
keys = list(input_dict.keys())
return input_dict[keys[0]] - input_dict[keys[1]]

g = Graph()
Expand Down

0 comments on commit 359f91f

Please sign in to comment.