From 79847e36c0b47226f41958fbffacd7893d7cde11 Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Wed, 5 Aug 2009 14:41:23 -0700 Subject: [PATCH] [#2847] Fixed a broken test --- lib/overhead_budget_hook.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/overhead_budget_hook.rb b/lib/overhead_budget_hook.rb index 463f2ba..9243538 100644 --- a/lib/overhead_budget_hook.rb +++ b/lib/overhead_budget_hook.rb @@ -12,9 +12,9 @@ class OverheadBudgetHook < Redmine::Hook::ViewListener if allowed_management? return content_tag(:td, number_to_currency(context[:deliverable].overhead_spent, :precision => 0)) end - else - return content_tag(:td, '') end + + return content_tag(:td, '') end def plugin_budget_view_deliverable_details_row(context={})