Commit 7e86bd7df84c5e987177c71a93cf2514cbbf30c4
Committed by
Rafael Manzo
1 parent
7f7688d6
Exists in
master
and in
29 other branches
[Mezuro] Added collect_time to project_result_fixtures
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
plugins/mezuro/test/fixtures/project_result_fixtures.rb
| ... | ... | @@ -11,12 +11,14 @@ class ProjectResultFixtures |
| 11 | 11 | result.load_time = 14878 |
| 12 | 12 | result.analysis_time = 1022 |
| 13 | 13 | result.source_tree = ModuleNodeFixtures.qt_calculator_tree |
| 14 | + result.collect_time = 14878 | |
| 14 | 15 | result |
| 15 | 16 | end |
| 16 | 17 | |
| 17 | 18 | def self.qt_calculator_hash |
| 18 | 19 | {:project => ProjectFixtures.qt_calculator_hash, :date => ModuleResultFixtures.create_hash[:date], |
| 19 | - :load_time => 14878, :analysis_time => 1022, :source_tree => ModuleNodeFixtures.qt_calculator_tree_hash} | |
| 20 | + :load_time => 14878, :analysis_time => 1022, :source_tree => ModuleNodeFixtures.qt_calculator_tree_hash, | |
| 21 | + :collect_time => 14878} | |
| 20 | 22 | end |
| 21 | 23 | |
| 22 | 24 | end | ... | ... |