Skip to content

Commit

Permalink
TST: fix typo: single -> simple
Browse files Browse the repository at this point in the history
  • Loading branch information
nstelter-slac committed Sep 12, 2024
1 parent 88d9187 commit 1f4f6bb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions tests/test_SuiteScripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
python LinearityPlotsParallelSlice.py -r 102 --maxNevents 250 -p /test_linearity_scan -f test_linearity_scan/LinearityPlotsParallel__c0_r102_n1.h5 --label fooBar
python simplePhotonCounter.py -r 102 --maxNevents 250 -p /test_linearity_scan --special slice
python simplePhotonCounter.py -r 102 --maxNevents 250 -p /test_single_photon
python SimpleClustersParallelSlice.py --special regionCommonMode,FH -r 102 --maxNevents 250 -p /test_single_photon
python simplePhotonCounter.py -r 102 --maxNevents 250 -p /test_simple_photon
python SimpleClustersParallelSlice.py --special regionCommonMode,FH -r 102 --maxNevents 250 -p /test_simple_photon
python EventScanParallelSlice.py -r 120 --maxNevents 250 -p /test_event_scan_parallel_slice
Expand Down Expand Up @@ -120,7 +120,7 @@ def __init__(self):
"test_noise_1",
"test_noise_2",
"test_noise_3",
"test_single_photon",
"test_simple_photon",
"test_time_scan_parallel_slice",
"test_event_scan_parallel_slice",
"test_find_min_switch_value",
Expand Down Expand Up @@ -293,21 +293,21 @@ def test_TimingScan(suite_tester, command, output_dir_name):
[
"bash",
"-c",
"python simplePhotonCounter.py -r 102 --maxNevents 250 -p /test_single_photon",
"python simplePhotonCounter.py -r 102 --maxNevents 250 -p /test_simple_photon",
],
"test_single_photon",
"test_simple_photon",
),
(
[
"bash",
"-c",
"python SimpleClustersParallelSlice.py --special regionCommonMode,FH -r 102 --maxNevents 250 -p /test_single_photon",
"python SimpleClustersParallelSlice.py --special regionCommonMode,FH -r 102 --maxNevents 250 -p /test_simple_photon",
],
"test_single_photon",
"test_simple_photon",
),
],
)
def test_SinglePhoton(suite_tester, command, output_dir_name):
def test_SimplePhoton(suite_tester, command, output_dir_name):
if not suite_tester.canTestsRun:
pytest.skip("Can only test with psana library on S3DF!")
suite_tester.test_command(command, output_dir_name)
Expand Down

0 comments on commit 1f4f6bb

Please sign in to comment.