diff options
Diffstat (limited to 't/app')
-rw-r--r-- | t/app/controller/report_display.t | 2 | ||||
-rw-r--r-- | t/app/model/problem.t | 6 | ||||
-rw-r--r-- | t/app/model/questionnaire.t | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/t/app/controller/report_display.t b/t/app/controller/report_display.t index d20774560..5c66200c8 100644 --- a/t/app/controller/report_display.t +++ b/t/app/controller/report_display.t @@ -254,7 +254,7 @@ for my $test ( { description => 'closed report', date => DateTime->now, - state => 'will not fix', + state => 'closed', banner_id => '', banner_text => '', fixed => 0 diff --git a/t/app/model/problem.t b/t/app/model/problem.t index 38ddc1857..43f15dbde 100644 --- a/t/app/model/problem.t +++ b/t/app/model/problem.t @@ -186,7 +186,7 @@ for my $test ( is_open => 0, }, { - state => 'will not fix', + state => 'closed', is_open => 0, }, ) { @@ -230,7 +230,7 @@ for my $test ( is_fixed => 1, }, { - state => 'will not fix', + state => 'closed', is_fixed => 0, }, ) { @@ -282,7 +282,7 @@ for my $test ( is_visible => 1, }, { - state => 'will not fix', + state => 'closed', is_visible => 1, }, ) { diff --git a/t/app/model/questionnaire.t b/t/app/model/questionnaire.t index 2bc8f9b2c..60b52043a 100644 --- a/t/app/model/questionnaire.t +++ b/t/app/model/questionnaire.t @@ -78,7 +78,7 @@ for my $test ( send_email => 1, }, { - state => 'will not fix', + state => 'closed', send_email => 1, }, ) { |