Skip to content

Commit

Permalink
Fix test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
tealeg committed Sep 13, 2024
1 parent 989e3d5 commit b3ec127
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions style_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ func TestReadCellColorBackground(t *testing.T) {
cell, err = sheet.Cell(1, 1)
c.Assert(err, qt.Equals, nil)
style = cell.GetStyle()
c.Assert(style.Fill, qt.Equals, *NewFill("solid", "00CC99FF", "00333333"))
c.Assert(style.Fill, qt.Equals, *NewFill("solid", "00FFCC99", ""))
cell, err = sheet.Cell(2, 1)
c.Assert(err, qt.Equals, nil)
style = cell.GetStyle()
c.Assert(style.Fill, qt.Equals, *NewFill("solid", "FF990099", "00333333"))
c.Assert(style.Fill, qt.Equals, *NewFill("solid", "FF990099", ""))
})
}

Expand Down

0 comments on commit b3ec127

Please sign in to comment.