From bda8e7f8129dae0064c47f8e051f76492e1128f5 Mon Sep 17 00:00:00 2001 From: xuri Date: Tue, 16 Nov 2021 00:40:44 +0800 Subject: This closes #1061, support multi-byte language on set header footer typo fixed and simplify code for read the data values arguments of formula functions --- styles_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'styles_test.go') diff --git a/styles_test.go b/styles_test.go index a214aaa..9129914 100644 --- a/styles_test.go +++ b/styles_test.go @@ -262,10 +262,10 @@ func TestGetDefaultFont(t *testing.T) { func TestSetDefaultFont(t *testing.T) { f := NewFile() - f.SetDefaultFont("Ariel") + f.SetDefaultFont("Arial") styles := f.stylesReader() s := f.GetDefaultFont() - assert.Equal(t, s, "Ariel", "Default font should change to Ariel") + assert.Equal(t, s, "Arial", "Default font should change to Arial") assert.Equal(t, *styles.CellStyles.CellStyle[0].CustomBuiltIn, true) } -- cgit v1.2.1