diff options
| author | Geremia Taglialatela <[email protected]> | 2023-04-07 23:55:45 +0200 |
|---|---|---|
| committer | Geremia Taglialatela <[email protected]> | 2023-04-07 23:55:45 +0200 |
| commit | 6b7b7ebb8656d3c35c0b585872742f35da9e8caa (patch) | |
| tree | 71bcdaaf6aee77a32902477b14ec5198e3aa73c7 /test | |
| parent | 6b1842b20e42b1de14433e162a025f936bce3260 (diff) | |
| download | caxlsx-6b7b7ebb8656d3c35c0b585872742f35da9e8caa.tar.gz caxlsx-6b7b7ebb8656d3c35c0b585872742f35da9e8caa.zip | |
Fix Layout/SpaceInsideReferenceBrackets offense
```
rubocop --only Layout/SpaceInsideReferenceBrackets -a
```
Diffstat (limited to 'test')
| -rw-r--r-- | test/drawing/tc_d_lbls.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/drawing/tc_d_lbls.rb b/test/drawing/tc_d_lbls.rb index 60efeb7b..cc12b561 100644 --- a/test/drawing/tc_d_lbls.rb +++ b/test/drawing/tc_d_lbls.rb @@ -22,7 +22,7 @@ class TestDLbls < Test::Unit::TestCase def test_initialization_with_optoins - options_hash = Hash[*[@boolean_attributes.map { |name| [name, true] }] ] + options_hash = Hash[*[@boolean_attributes.map { |name| [name, true] }]] d_lbls = Axlsx::DLbls.new(Axlsx::Pie3DChart, options_hash.merge( { :d_lbl_pos => :t })) |
