Skip to content

Commit 35d2f0b

Browse files
committed
Move mocknull from test to roundup/test
1 parent 5f760c0 commit 35d2f0b

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

test/db_test_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
from roundup.anypy.cmp_ import NoneAndDictComparable
4646
from roundup.anypy.email_ import message_from_bytes
4747

48-
from .mocknull import MockNull
48+
from roundup.test.mocknull import MockNull
4949

5050
config = configuration.CoreConfig()
5151
config.DATABASE = "db"

test/rest_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def dst(self, dt):
4444

4545
from .db_test_base import setupTracker
4646

47-
from .mocknull import MockNull
47+
from roundup.test.mocknull import MockNull
4848

4949
from io import BytesIO
5050
import json

test/test_actions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from time import sleep
1414
from datetime import datetime
1515

16-
from .mocknull import MockNull
16+
from roundup.test.mocknull import MockNull
1717

1818
def true(*args, **kwargs):
1919
return 1

test/test_cgi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# For testing very simple rendering
2929
from roundup.cgi.engine_zopetal import RoundupPageTemplate
3030

31-
from .mocknull import MockNull
31+
from roundup.test.mocknull import MockNull
3232

3333
from . import db_test_base
3434
from .db_test_base import FormTestParent, setupTracker, FileUpload

0 commit comments

Comments
 (0)