Skip to content

Commit d5b45e4

Browse files
committed
fix bug
1 parent b999142 commit d5b45e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/paddle/fluid/tests/unittests/test_elementwise_mod_op.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def test_dygraph(self):
139139
class TestRemainderInplaceOp(unittest.TestCase):
140140

141141
def _executed_api(self, x, y, name=None):
142-
return x.subtract_(y, name)
142+
return x.remainder_(y, name)
143143

144144

145145
class TestRemainderInplaceBroadcastSuccess(unittest.TestCase):

0 commit comments

Comments
 (0)