Navigation Menu

Skip to content

Commit

Permalink
Don't count not checked tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Aug 11, 2012
1 parent beb9563 commit 27ab022
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/groonga/tester.rb
Expand Up @@ -423,7 +423,7 @@ def pass_ratio
if n_tests.zero?
0
else
(n_passed_tests / n_tests.to_f) * 100
(n_passed_tests / (n_tests - n_not_checked_tests).to_f) * 100
end
end

Expand Down

0 comments on commit 27ab022

Please sign in to comment.