You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by da...@apache.org on 2017/04/10 20:43:52 UTC

[2/3] tinkerpop git commit: removed unittest

removed unittest


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/e745fb06
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/e745fb06
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/e745fb06

Branch: refs/heads/tp32
Commit: e745fb06f82559e8917a51b80a24dbd29c1f9d79
Parents: d068682
Author: davebshow <da...@gmail.com>
Authored: Wed Apr 5 09:30:34 2017 -0400
Committer: davebshow <da...@gmail.com>
Committed: Wed Apr 5 09:30:34 2017 -0400

----------------------------------------------------------------------
 gremlin-console/src/test/python/tests/test_console.py | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/e745fb06/gremlin-console/src/test/python/tests/test_console.py
----------------------------------------------------------------------
diff --git a/gremlin-console/src/test/python/tests/test_console.py b/gremlin-console/src/test/python/tests/test_console.py
index c2719bd..f079291 100644
--- a/gremlin-console/src/test/python/tests/test_console.py
+++ b/gremlin-console/src/test/python/tests/test_console.py
@@ -17,11 +17,10 @@ specific language governing permissions and limitations
 under the License.
 '''
 
-import unittest
-from unittest import TestCase
 import pexpect
 
-class TestConsole(TestCase):
+
+class TestConsole(object):
 
     # the base command must pass -C because if colors are enabled pexpect gets garbled input and tests won't pass
     gremlinsh = "bash gremlin-console/bin/gremlin.sh -C "
@@ -90,6 +89,3 @@ class TestConsole(TestCase):
     @staticmethod
     def _close(child):
         child.sendline(":x")
-
-
-