From 0f15f3e3e57a091d2f2a136dcae38650671f0994 Mon Sep 17 00:00:00 2001 From: jhoneill Date: Thu, 27 Sep 2018 12:26:43 +0100 Subject: [PATCH] fixed incorrect range in chart test --- __tests__/Export-Excel.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/Export-Excel.Tests.ps1 b/__tests__/Export-Excel.Tests.ps1 index a811a37..83c50e1 100644 --- a/__tests__/Export-Excel.Tests.ps1 +++ b/__tests__/Export-Excel.Tests.ps1 @@ -896,7 +896,7 @@ Describe ExportExcel { $d.Title.text | Should beNullOrEmpty $d.ChartType | Should be "line" $d.Series[0].Header | Should be "Sinx" - $d.Series[0].xSeries | Should be "'Sheet1'!A2:B362" + $d.Series[0].xSeries | Should be "'Sheet1'!A2:A362" $d.Series[0].Series | Should be "'Sheet1'!B2:B362" }