Skip to content

Commit

Permalink
fix unit test class name
Browse files Browse the repository at this point in the history
  • Loading branch information
chengduoZH committed Sep 30, 2017
1 parent 2d8a5b9 commit 6abcb74
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions python/paddle/v2/framework/tests/test_pool2d_op.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def initTestCase(self):
self.paddings = [0, 0]


class TestCase3(TestPool2d_Op):
class TestCase4(TestPool2d_Op):
def initTestCase(self):
self.global_pool = False
self.op_type = "pool2d"
Expand All @@ -128,7 +128,7 @@ def initTestCase(self):
self.paddings = [0, 0]


class TestCase3(TestPool2d_Op):
class TestCase5(TestPool2d_Op):
def initTestCase(self):
self.global_pool = False
self.op_type = "pool2d"
Expand Down
4 changes: 2 additions & 2 deletions python/paddle/v2/framework/tests/test_pool3d_op.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def initTestCase(self):
self.paddings = [0, 0, 0]


class TestCase3(TestPool3d_Op):
class TestCase4(TestPool3d_Op):
def initTestCase(self):
self.global_pool = False
self.op_type = "pool3d"
Expand All @@ -136,7 +136,7 @@ def initTestCase(self):
self.paddings = [0, 0, 0]


class TestCase3(TestPool3d_Op):
class TestCase5(TestPool3d_Op):
def initTestCase(self):
self.global_pool = False
self.op_type = "pool3d"
Expand Down

0 comments on commit 6abcb74

Please sign in to comment.