summaryrefslogtreecommitdiffhomepage
path: root/test/workbook/worksheet/tc_outline_pr.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/workbook/worksheet/tc_outline_pr.rb')
-rw-r--r--test/workbook/worksheet/tc_outline_pr.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/workbook/worksheet/tc_outline_pr.rb b/test/workbook/worksheet/tc_outline_pr.rb
index d2906a61..cd806d17 100644
--- a/test/workbook/worksheet/tc_outline_pr.rb
+++ b/test/workbook/worksheet/tc_outline_pr.rb
@@ -1,4 +1,4 @@
-require 'tc_helper.rb'
+require 'tc_helper'
class TestOutlinePr < Test::Unit::TestCase
def setup
@@ -6,14 +6,14 @@ class TestOutlinePr < Test::Unit::TestCase
end
def test_summary_below
- assert_equal false, @outline_pr.summary_below
+ refute @outline_pr.summary_below
end
def test_summary_right
- assert_equal true, @outline_pr.summary_right
+ assert @outline_pr.summary_right
end
def test_apply_styles
- assert_equal false, @outline_pr.apply_styles
+ refute @outline_pr.apply_styles
end
end