Changed name of codec to full path name. This allows importing

the test_charmapcodec test via the test package.
This commit is contained in:
Marc-André Lemburg 2001-01-17 15:07:00 +00:00
parent 31c69431e6
commit d2ebe8775e
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ def check(a, b):
print '%s == %s: OK' % (repr(a), repr(b))
# test codec's full path name (see test/testcodec.py)
codecname = 'testcodec'
codecname = 'test.testcodec'
check(unicode('abc', codecname), u'abc')
check(unicode('xdef', codecname), u'abcdef')