File tree Expand file tree Collapse file tree 3 files changed +15
-6
lines changed Expand file tree Collapse file tree 3 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
22
3+ from __future__ import print_function
4+
5+ import sys
36import unittest
47import tarantool
58
811class TestSuite_Request (unittest .TestCase ):
912 @classmethod
1013 def setUpClass (self ):
11- print (' DML ' .center (70 , '=' ))
12- print ('-' * 70 )
14+ print (' DML ' .center (70 , '=' ), file = sys . stderr )
15+ print ('-' * 70 , file = sys . stderr )
1316 self .srv = TarantoolServer ()
1417 self .srv .script = 'unit/suites/box.lua'
1518 self .srv .start ()
Original file line number Diff line number Diff line change 11#!/usr/bin/env ipython
22
3+ from __future__ import print_function
4+
5+ import sys
36import unittest
47from tarantool .utils import greeting_decode , version_id
58import uuid
69
710class TestSuite_Protocol (unittest .TestCase ):
811 @classmethod
912 def setUpClass (self ):
10- print (' PROTOCOL ' .center (70 , '=' ))
11- print ('-' * 70 )
13+ print (' PROTOCOL ' .center (70 , '=' ), file = sys . stderr )
14+ print ('-' * 70 , file = sys . stderr )
1215
1316 def test_00_greeting_1_6 (self ):
1417 buf = "Tarantool 1.6.6 \n " + \
Original file line number Diff line number Diff line change 11#!/usr/bin/env ipython
22
3+ from __future__ import print_function
4+
5+ import sys
36import unittest
47import tarantool
58from .lib .tarantool_server import TarantoolServer
69
710class TestSuite_Schema (unittest .TestCase ):
811 @classmethod
912 def setUpClass (self ):
10- print (' SCHEMA ' .center (70 , '=' ))
11- print ('-' * 70 )
13+ print (' SCHEMA ' .center (70 , '=' ), file = sys . stderr )
14+ print ('-' * 70 , file = sys . stderr )
1215 self .srv = TarantoolServer ()
1316 self .srv .script = 'unit/suites/box.lua'
1417 self .srv .start ()
You can’t perform that action at this time.
0 commit comments