Skip to content

Commit

Permalink
Add new test for critical bug in the product
Browse files Browse the repository at this point in the history
cherry-pick 2d72754 from lts-v0 branch!

The problem is not present on master (wrong URLs were a problem
for the branched version) but the test is valid as we need to make
sure future versions don't regress to the same problem.
  • Loading branch information
atodorov committed Feb 20, 2019
1 parent c4f1ae5 commit 31ae5b3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python_tests/test_suite.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@ def test_will_always_fail(self):
def test_this_is_flaky(self): def test_this_is_flaky(self):
return # to eliminate flakiness return # to eliminate flakiness
self.assertEqual(0, datetime.now().microsecond % 2) self.assertEqual(0, datetime.now().microsecond % 2)

def test_critical_bug_reported_by_customer(self):
pass

0 comments on commit 31ae5b3

Please sign in to comment.