Skip to content

Commit

Permalink
Merge pull request #433 from cmoussa1/t1029-rm-brackets
Browse files Browse the repository at this point in the history
`t1029`: remove brackets from `grep` tests
  • Loading branch information
mergify[bot] committed Mar 20, 2024
2 parents b8d960c + 2f157b8 commit 3864ed5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions t/t1029-mf-priority-default-bank.t
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ test_expect_success 'add user to flux-accounting DB and update plugin' '
test_expect_success 'check that bank was added to jobspec' '
flux job wait-event -f json $jobid priority &&
flux job info $jobid eventlog > eventlog.out &&
grep "{\"attributes.system.bank\":\"account1\"}" eventlog.out &&
grep "\"attributes.system.bank\":\"account1\"" eventlog.out &&
flux job cancel $jobid
'

Expand All @@ -75,7 +75,7 @@ test_expect_success 'successfully submit a job under a default bank' '
jobid=$(flux python ${SUBMIT_AS} 1001 hostname) &&
flux job wait-event -f json $jobid priority &&
flux job info $jobid eventlog > eventlog.out &&
grep "{\"attributes.system.bank\":\"account1\"}" eventlog.out &&
grep "\"attributes.system.bank\":\"account1\"" eventlog.out &&
flux job cancel $jobid
'

Expand All @@ -88,7 +88,7 @@ test_expect_success 'successfully submit a job under the new default bank' '
jobid=$(flux python ${SUBMIT_AS} 1001 hostname) &&
flux job wait-event -f json $jobid priority &&
flux job info $jobid eventlog > eventlog.out &&
grep "{\"attributes.system.bank\":\"account2\"}" eventlog.out &&
grep "\"attributes.system.bank\":\"account2\"" eventlog.out &&
flux job cancel $jobid
'

Expand Down

0 comments on commit 3864ed5

Please sign in to comment.