Skip to content

Commit

Permalink
Updated unittests
Browse files Browse the repository at this point in the history
  • Loading branch information
nuuuwan committed Nov 1, 2023
1 parent 2522d53 commit 14bab29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_init.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import unittest

from utils import WWW, Color, Git, Tweet, _log, hashx, mr, xmlx
from utils import WWW, Color, Git, Tweet, _, _log, hashx, mr, xmlx


class TestCase(unittest.TestCase):
def test_init(self):
for x in [WWW, Color, Git, Tweet, _log, mr, hashx, xmlx]:
for x in [WWW, Color, Git, Tweet, _log, mr, hashx, xmlx, _]:
self.assertIsNotNone(x)

0 comments on commit 14bab29

Please sign in to comment.