Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/legacy_test/test_api_compatibility_part3.py
Original file line number Diff line number Diff line change
Expand Up @@ -1345,7 +1345,7 @@ def setUp(self):
self.np_weight = np.random.rand(2, 2, 3, 3).astype(self.dtype)
self.np_bias = np.random.rand(2).astype(self.dtype)

def test_dygraph_Compatibility(self):
def _test_dygraph_Compatibility(self):
paddle.disable_static()
x = paddle.to_tensor(self.np_x)
weight = paddle.to_tensor(self.np_weight)
Expand Down Expand Up @@ -1379,7 +1379,7 @@ def test_dygraph_Compatibility(self):

paddle.enable_static()

def test_static_Compatibility(self):
def _test_static_Compatibility(self):
paddle.enable_static()
main = paddle.static.Program()
startup = paddle.static.Program()
Expand Down
Loading