Skip to content

Commit

Permalink
Fixed a flaky test when test runs in 0 seconds.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgebal committed Feb 19, 2024
1 parent 688aad2 commit fc9382e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ut3_user/api/test_ut_run.pkb
Expand Up @@ -742,7 +742,7 @@ Failures:%
procedure remove_time_from_results(a_results in out nocopy ut3_develop.ut_varchar2_list) is
begin
for i in 1 .. a_results.count loop
a_results(i) := regexp_replace(a_results(i),'\[[0-9]*[\.,][0-9]+ sec\]','');
a_results(i) := regexp_replace(a_results(i),'\[[0-9]*[\.,]?[0-9]+ sec\]','');
a_results(i) := regexp_replace(a_results(i),'Finished in [0-9]*[\.,][0-9]+ seconds','');
end loop;
end;
Expand Down

0 comments on commit fc9382e

Please sign in to comment.