Skip to content

Commit

Permalink
Renamed test names to be more plain (#600)
Browse files Browse the repository at this point in the history
At a glance, the names of test cases such as "rft_0_ift_2" are not
understandable without knowing what the acronyms mean. The directories
of the new test case names will continue to use the acronyms as that
better depicts the contents of the test files present.
  • Loading branch information
achauphan committed Feb 13, 2024
1 parent e2473b6 commit 32ad83a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def tearDown(self):
# Test the random failure case of a single initial test containing
# one passing and one failing test in its test history, both with the same SHA1 pairs
#
def test_rft_1_ift_2(self):
def test_random_failure(self):

testCaseName = "rft_1_ift_2"
cdash_analyze_and_report_random_failures_setup_test_dir(testCaseName)
Expand Down Expand Up @@ -248,9 +248,9 @@ def test_rft_1_ift_2(self):
"--days-of-history=3"
]
)
# TODO: Remove the current "random" test case as this should be the base case

def test_rft_0_ift_2(self):

def test_no_random_failure(self):

testCaseName = "rft_0_ift_2"
cdash_analyze_and_report_random_failures_setup_test_dir(testCaseName)
Expand Down

0 comments on commit 32ad83a

Please sign in to comment.