Skip to content

Commit 0097ea9

Browse files
committed
Add missing op in test check.
1 parent f254e10 commit 0097ea9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,7 @@ def test_AvgPool(self):
773773
def test_MaxPool(self):
774774
t = tf.nn.max_pool(np.arange(16).reshape(1, 4, 4, 1).astype("float32"),
775775
[1, 2, 2, 1], [1, 1, 1, 1], "SAME")
776-
self.check()
776+
self.check(t)
777777
t = tf.nn.max_pool(np.arange(16).reshape(1, 4, 4, 1).astype("float32"),
778778
[1, 2, 2, 1], [1, 2, 2, 1], "VALID")
779779
self.check(t)

0 commit comments

Comments
 (0)