summaryrefslogtreecommitdiffhomepage
path: root/test/stylesheet/tc_cell_alignment.rb
diff options
context:
space:
mode:
authorGeremia Taglialatela <[email protected]>2023-04-10 12:13:09 +0200
committerGeremia Taglialatela <[email protected]>2023-04-10 12:13:09 +0200
commita7532517c74ba3589279aa92042ca9da2336a5ea (patch)
tree06962b0ba4e49e2182b43766e1859d14280f0cc9 /test/stylesheet/tc_cell_alignment.rb
parent84a2b255d6fd780f526ac3d9bf99a40f08792986 (diff)
downloadcaxlsx-a7532517c74ba3589279aa92042ca9da2336a5ea.tar.gz
caxlsx-a7532517c74ba3589279aa92042ca9da2336a5ea.zip
Fix some Layout/HashAlignment offenses
Some offenses have been selected and fixed automatically
Diffstat (limited to 'test/stylesheet/tc_cell_alignment.rb')
-rw-r--r--test/stylesheet/tc_cell_alignment.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/stylesheet/tc_cell_alignment.rb b/test/stylesheet/tc_cell_alignment.rb
index fe2e9fe4..0b514bf4 100644
--- a/test/stylesheet/tc_cell_alignment.rb
+++ b/test/stylesheet/tc_cell_alignment.rb
@@ -16,8 +16,8 @@ class TestCellAlignment < Test::Unit::TestCase
assert_equal(@item.shrinkToFit, nil)
assert_equal(@item.readingOrder, nil)
options = { :horizontal => :left, :vertical => :top, :textRotation => 3,
- :wrapText => true, :indent => 2, :relativeIndent => 5,
- :justifyLastLine => true, :shrinkToFit => true, :readingOrder => 2 }
+ :wrapText => true, :indent => 2, :relativeIndent => 5,
+ :justifyLastLine => true, :shrinkToFit => true, :readingOrder => 2 }
ca = Axlsx::CellAlignment.new options
options.each do |key, value|
assert_equal(ca.send(key.to_sym), value)