mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-21 06:41:00 +00:00
Fix mistakes in changes to test_dummy.py and test_updater.py in 8f4acc31
This commit is contained in:
parent
5d26d2d93e
commit
0031bbdccc
2 changed files with 2 additions and 2 deletions
|
|
@ -21,7 +21,7 @@ Test dummy object.
|
|||
import sys
|
||||
import unittest
|
||||
|
||||
from builtins import bytes, str
|
||||
from builtins import str
|
||||
|
||||
import linkcheck.dummy
|
||||
|
||||
|
|
|
|||
|
|
@ -39,4 +39,4 @@ class TestUpdater (unittest.TestCase):
|
|||
self.assertTrue(isinstance(version, str), repr(version))
|
||||
self.assertTrue(url is None or isinstance(url, str), repr(url))
|
||||
else:
|
||||
self.assertTrue(isinstance(value, unicode), repr(value))
|
||||
self.assertTrue(isinstance(value, str), repr(value))
|
||||
|
|
|
|||
Loading…
Reference in a new issue