summaryrefslogtreecommitdiffhomepage
path: root/test/stylesheet/tc_cell_protection.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/stylesheet/tc_cell_protection.rb')
-rw-r--r--test/stylesheet/tc_cell_protection.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/stylesheet/tc_cell_protection.rb b/test/stylesheet/tc_cell_protection.rb
index b2161fa6..a1fc59b2 100644
--- a/test/stylesheet/tc_cell_protection.rb
+++ b/test/stylesheet/tc_cell_protection.rb
@@ -1,7 +1,6 @@
require 'tc_helper.rb'
class TestCellProtection < Test::Unit::TestCase
-
def setup
@item = Axlsx::CellProtection.new
end
@@ -17,13 +16,12 @@ class TestCellProtection < Test::Unit::TestCase
def test_hidden
assert_raise(ArgumentError) { @item.hidden = -1 }
assert_nothing_raised { @item.hidden = false }
- assert_equal(@item.hidden, false )
+ assert_equal(@item.hidden, false)
end
def test_locked
assert_raise(ArgumentError) { @item.locked = -1 }
assert_nothing_raised { @item.locked = false }
- assert_equal(@item.locked, false )
+ assert_equal(@item.locked, false)
end
-
end