]> git.madduck.net Git - etc/taskwarrior.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

tests: Fix typos
authorTomas Babej <tomasbabej@gmail.com>
Thu, 24 Dec 2015 10:55:15 +0000 (11:55 +0100)
committerTomas Babej <tomasbabej@gmail.com>
Thu, 24 Dec 2015 10:55:15 +0000 (11:55 +0100)
tasklib/tests.py

index 7611536c5cc1734ee4475194141e4e1f7217ea2f..7c06f362aafa9322ecc4b6480e53035843dfa741 100644 (file)
@@ -1135,7 +1135,7 @@ class LazyUUIDTaskTest(TasklibTest):
         assert type(lazy2) is LazyUUIDTask
 
     def test_lazy_in_queryset(self):
-        tasks = self.tw.tasks.tasks.filter(uuid=self.stored['uuid'])
+        tasks = self.tw.tasks.filter(uuid=self.stored['uuid'])
 
         assert self.lazy in tasks
         assert type(self.lazy) is LazyUUIDTask
@@ -1144,7 +1144,7 @@ class LazyUUIDTaskTest(TasklibTest):
 class LazyUUIDTaskSetTest(TasklibTest):
 
     def setUp(self):
-        super(LazyUUIDTaskTest, self).setUp()
+        super(LazyUUIDTaskSetTest, self).setUp()
 
         self.task1 = Task(self.tw, description="task 1")
         self.task2 = Task(self.tw, description="task 2")