From a49f5bb23ceb57b4fc824f8988a8b6ff502ce6bf Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Sat, 5 Sep 2015 16:44:50 +0200 Subject: [PATCH] tests: Bring tw-1452 and tw-1481 back to life TW-1481 is not yet fixed though, so mark it as expectedFail. --- test/{tw-1452.x => tw-1452.t} | 0 test/{tw-1481.x => tw-1481.t} | 3 +++ 2 files changed, 3 insertions(+) rename test/{tw-1452.x => tw-1452.t} (100%) rename test/{tw-1481.x => tw-1481.t} (97%) diff --git a/test/tw-1452.x b/test/tw-1452.t similarity index 100% rename from test/tw-1452.x rename to test/tw-1452.t diff --git a/test/tw-1481.x b/test/tw-1481.t similarity index 97% rename from test/tw-1481.x rename to test/tw-1481.t index f99918052..c5b8878a6 100755 --- a/test/tw-1481.x +++ b/test/tw-1481.t @@ -46,6 +46,7 @@ class Test1481(TestCase): self.child1_uuid = self.t.export_one(2)['uuid'] self.child2_uuid = self.t.export_one(3)['uuid'] + @unittest.expectedFailure def test_set_dependency_on_first_completed_task(self): """Sets dependency on task which has been just completed.""" self.t('2 done') @@ -56,6 +57,7 @@ class Test1481(TestCase): # Set the dependency self.t('1 modify depends:%s' % self.child1_uuid) + @unittest.expectedFailure def test_set_dependency_on_second_completed_task(self): """ Sets dependency on task which has been completed @@ -71,6 +73,7 @@ class Test1481(TestCase): # Set the dependencies self.t('1 modify depends:%s' % self.child2_uuid) + @unittest.expectedFailure def test_set_dependency_on_two_completed_tasks(self): """ Sets dependency on two most recent completed tasks. """ self.t('2 done')