Skip to content

Commit 9be7417

Browse files
committed
Merge pull request #172 from viccuad/viccuad-patch-targz
Rename common.py to test_common.py to make the file included in source tarballs
2 parents b4f5b9a + c3789fb commit 9be7417

File tree

8 files changed

+7
-7
lines changed

8 files changed

+7
-7
lines changed

test/test_buffer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22
from nose.tools import with_setup, eq_ as eq, ok_ as ok
3-
from common import vim, cleanup
3+
from test_common import vim, cleanup
44

55

66
@with_setup(setup=cleanup)

test/test_client_rpc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
from nose.tools import with_setup, eq_ as eq
3-
from common import vim, cleanup
3+
from test_common import vim, cleanup
44

55
cid = vim.channel_id
66

File renamed without changes.

test/test_concurrency.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from nose.tools import with_setup, eq_ as eq
2-
from common import vim, cleanup
2+
from test_common import vim, cleanup
33
from threading import Timer
44

55

test/test_events.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
from nose.tools import with_setup, eq_ as eq
3-
from common import vim, cleanup
3+
from test_common import vim, cleanup
44

55

66
@with_setup(setup=cleanup)

test/test_tabpage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22
from nose.tools import with_setup, eq_ as eq, ok_ as ok
3-
from common import vim, cleanup
3+
from test_common import vim, cleanup
44

55

66
@with_setup(setup=cleanup)

test/test_vim.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
import os, tempfile
33
from nose.tools import with_setup, eq_ as eq, ok_ as ok
4-
from common import vim, cleanup
4+
from test_common import vim, cleanup
55

66
def source(code):
77
fd, fname = tempfile.mkstemp()

test/test_window.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22
from nose.tools import with_setup, eq_ as eq, ok_ as ok
3-
from common import vim, cleanup
3+
from test_common import vim, cleanup
44

55

66
@with_setup(setup=cleanup)

0 commit comments

Comments
 (0)