diff options
| author | Geremia Taglialatela <[email protected]> | 2023-05-22 20:13:13 +0200 |
|---|---|---|
| committer | Geremia Taglialatela <[email protected]> | 2023-05-22 20:13:13 +0200 |
| commit | 083c4c6d62011cd88966d608b0c6bb736f300a0c (patch) | |
| tree | b5ceb9b3a32c4130d84c3075966b4033bf32a118 /test/workbook/worksheet/tc_sheet_pr.rb | |
| parent | 6752225bbb8a9eec905ec02a98f1a25a309c404a (diff) | |
| download | caxlsx-083c4c6d62011cd88966d608b0c6bb736f300a0c.tar.gz caxlsx-083c4c6d62011cd88966d608b0c6bb736f300a0c.zip | |
Use Ruby 1.9 hash syntax (non-production code)
Diffstat (limited to 'test/workbook/worksheet/tc_sheet_pr.rb')
| -rw-r--r-- | test/workbook/worksheet/tc_sheet_pr.rb | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/test/workbook/worksheet/tc_sheet_pr.rb b/test/workbook/worksheet/tc_sheet_pr.rb index be87ebf7..58c61bb5 100644 --- a/test/workbook/worksheet/tc_sheet_pr.rb +++ b/test/workbook/worksheet/tc_sheet_pr.rb @@ -6,16 +6,16 @@ class TestSheetPr < Test::Unit::TestCase def setup worksheet = Axlsx::Package.new.workbook.add_worksheet @options = { - :sync_horizontal => false, - :sync_vertical => false, - :transition_evaluation => true, - :transition_entry => true, - :published => false, - :filter_mode => true, - :enable_format_conditions_calculation => false, - :code_name => '007', - :sync_ref => 'foo', - :tab_color => 'FFFF6666' + sync_horizontal: false, + sync_vertical: false, + transition_evaluation: true, + transition_entry: true, + published: false, + filter_mode: true, + enable_format_conditions_calculation: false, + code_name: '007', + sync_ref: 'foo', + tab_color: 'FFFF6666' } @sheet_pr = Axlsx::SheetPr.new(worksheet, @options) end |
