perky 03/05/26 08:07:49
Modified: tests test_encoding_shift_jis.py
Log:
Set tstring instead of teststring
Revision Changes Path
1.2 +2 -2 cjkcodecs/tests/test_encoding_shift_jis.py
Index: test_encoding_shift_jis.py
===================================================================
RCS file: /cvsroot/koco/cjkcodecs/tests/test_encoding_shift_jis.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- test_encoding_shift_jis.py 26 May 2003 11:40:41 -0000 1.1
+++ test_encoding_shift_jis.py 26 May 2003 15:07:49 -0000 1.2
@@ -27,7 +27,7 @@
# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
-# $Id: test_encoding_shift_jis.py,v 1.1 2003/05/26 11:40:41 perky Exp $
+# $Id: test_encoding_shift_jis.py,v 1.2 2003/05/26 15:07:49 perky Exp $
#
from test import test_support
@@ -36,7 +36,7 @@
class Test_SJIS(test_multibytecodec_support.TestBase, unittest.TestCase):
encoding = 'shift_jis'
- from sampletexts.shift_jis import teststring
+ from sampletexts.shift_jis import teststring as tstring
errortests = (
# invalid bytes
("abc\x80\x80\x82\x84", "strict", None),
|