Skip to content

Commit

Permalink
fix test function for bitwise_and op
Browse files Browse the repository at this point in the history
  • Loading branch information
marlin2023 committed May 21, 2024
1 parent ca3889a commit 936e3ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_bitwise_and.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ def forward(self, inputs, inputs_):
"""
forward
"""
x = paddle.add(inputs, inputs_)
x = paddle.bitwise_and(inputs, inputs_)
return x


def test_add_18():
def test_bitwise_and_18():
"""
api: paddle.add
api: paddle.bitwise_and
op version: 18
"""
op = Net()
Expand Down

0 comments on commit 936e3ec

Please sign in to comment.