Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
zrr1999 committed Aug 29, 2022
1 parent d5b45e4 commit 72265b4
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -136,13 +136,13 @@ def test_dygraph(self):
np.testing.assert_allclose(z_expected, z.numpy(), rtol=1e-05)


class TestRemainderInplaceOp(unittest.TestCase):
class TestRemainderInplaceOp(TestRemainderOp):

def _executed_api(self, x, y, name=None):
return x.remainder_(y, name)


class TestRemainderInplaceBroadcastSuccess(unittest.TestCase):
class TestRemainderInplaceBroadcastSuccess(TestRemainderOp):

def init_data(self):
self.x_numpy = np.random.rand(2, 3, 4).astype('float')
Expand Down

0 comments on commit 72265b4

Please sign in to comment.