diff --git a/twisted/topfiles/5220.bugfix b/twisted/topfiles/5220.bugfix
deleted file mode 100644
index 3a56142..0000000
|
a
|
b
|
|
| 1 | | trial now deterministically runs tests in the order in which they were specified on the command line, instead of quasi-randomly according to dictionary key ordering. |
| 2 | | No newline at end of file |
diff --git a/twisted/topfiles/5520.feature b/twisted/topfiles/5520.feature
index e69de29..3a56142 100644
|
a
|
b
|
|
| | 1 | trial now deterministically runs tests in the order in which they were specified on the command line, instead of quasi-randomly according to dictionary key ordering. |
| | 2 | No newline at end of file |
diff --git a/twisted/trial/test/test_script.py b/twisted/trial/test/test_script.py
index 1eb8e0b..ec80e64 100644
|
a
|
b
|
|
| 598 | 598 | |
| 599 | 599 | |
| 600 | 600 | class TestArgumentOrderTests(unittest.TestCase): |
| | 601 | """ |
| | 602 | Tests for the order-preserving behavior on provided command-line tests. |
| | 603 | |
| | 604 | """ |
| | 605 | |
| 601 | 606 | def setUp(self): |
| 602 | 607 | self.config = trial.Options() |
| 603 | 608 | self.loader = TestLoader() |
| … |
… |
|
| 605 | 610 | def test_preserveArgumentOrder(self): |
| 606 | 611 | """ |
| 607 | 612 | Multiple tests passed on the command line are not reordered. |
| 608 | | |
| 609 | 613 | """ |
| 610 | | |
| 611 | 614 | tests = [ |
| 612 | | "twisted.manhole.test.test_explorer", |
| 613 | | "twisted.conch.test.test_conch", |
| 614 | | "twisted.internet.test.test_default", |
| 615 | | "twisted.test.test_abstract", |
| | 615 | "twisted.trial.test.test_tests", |
| | 616 | "twisted.trial.test.test_assertions", |
| | 617 | "twisted.trial.test.test_deferreds", |
| 616 | 618 | ] |
| 617 | 619 | self.config.parseOptions(tests) |
| 618 | 620 | |