Skip to content

Commit 34d9121

Browse files
committed
Change normal value for cell style tests
1 parent 3d8f09d commit 34d9121

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

Tests/PHPWord/Style/CellTest.php

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ public function testSetGetNormal()
2121
$object = new PHPWord_Style_Cell();
2222

2323
$attributes = array(
24-
'valign' => null,
25-
'textDirection' => null,
26-
'bgColor' => null,
27-
'borderTopSize' => null,
28-
'borderTopColor' => null,
29-
'borderLeftSize' => null,
30-
'borderLeftColor' => null,
31-
'borderRightSize' => null,
32-
'borderRightColor' => null,
33-
'borderBottomSize' => null,
34-
'borderBottomColor' => null,
35-
'gridSpan' => null,
36-
'vMerge' => null,
24+
'valign' => 'left',
25+
'textDirection' => PHPWord_Style_Cell::TEXT_DIR_BTLR,
26+
'bgColor' => 'FFFF00',
27+
'borderTopSize' => 120,
28+
'borderTopColor' => 'FFFF00',
29+
'borderLeftSize' => 120,
30+
'borderLeftColor' => 'FFFF00',
31+
'borderRightSize' => 120,
32+
'borderRightColor' => 'FFFF00',
33+
'borderBottomSize' => 120,
34+
'borderBottomColor' => 'FFFF00',
35+
'gridSpan' => 2,
36+
'vMerge' => 2,
3737
);
3838
//'defaultBorderColor' => null,
3939
foreach ($attributes as $key => $value) {

0 commit comments

Comments
 (0)