Skip to content

Commit

Permalink
Fixing the item_test failure. (tensorflow#15799)
Browse files Browse the repository at this point in the history
  • Loading branch information
Amit Patankar authored and gunan committed Jan 3, 2018
1 parent 78ab389 commit 622487f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow/python/grappler/item_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def testImportantOps(self):
mg = meta_graph.create_meta_graph_def(graph=g)
grappler_item = item.Item(mg)
op_list = grappler_item.IdentifyImportantOps()
self.assertEqual([b'Const', b'Const_1', b'add'], op_list)
self.assertItemsEqual([b'Const', b'Const_1', b'add'], op_list)

def testOpProperties(self):
with ops.Graph().as_default() as g:
Expand Down

0 comments on commit 622487f

Please sign in to comment.