diff options
Diffstat (limited to 'sheetpr_test.go')
| -rw-r--r-- | sheetpr_test.go | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/sheetpr_test.go b/sheetpr_test.go index 000b33a..65ab196 100644 --- a/sheetpr_test.go +++ b/sheetpr_test.go @@ -15,7 +15,7 @@ var _ = []SheetPrOption{  	FitToPage(true),  	TabColorIndexed(42),  	TabColorRGB("#FFFF00"), -	TabColorTheme(TabColorThemeLight2), +	TabColorTheme(ColorMappingTypeLight2),  	TabColorTint(0.5),  	AutoPageBreaks(true),  	OutlineSummaryBelow(true), @@ -45,7 +45,7 @@ func ExampleFile_SetSheetPrOptions() {  		FitToPage(true),  		TabColorIndexed(42),  		TabColorRGB("#FFFF00"), -		TabColorTheme(TabColorThemeLight2), +		TabColorTheme(ColorMappingTypeLight2),  		TabColorTint(0.5),  		AutoPageBreaks(true),  		OutlineSummaryBelow(false), @@ -124,7 +124,7 @@ func TestSheetPrOptions(t *testing.T) {  		{new(FitToPage), FitToPage(true)},  		{new(TabColorIndexed), TabColorIndexed(42)},  		{new(TabColorRGB), TabColorRGB("FFFF00")}, -		{new(TabColorTheme), TabColorTheme(TabColorThemeLight2)}, +		{new(TabColorTheme), TabColorTheme(ColorMappingTypeLight2)},  		{new(TabColorTint), TabColorTint(0.5)},  		{new(AutoPageBreaks), AutoPageBreaks(true)},  		{new(OutlineSummaryBelow), OutlineSummaryBelow(false)}, | 
