Skip to content

Commit

Permalink
Fix stats update for test suit
Browse files Browse the repository at this point in the history
  • Loading branch information
DraviaVemal committed Aug 1, 2024
1 parent 411da6b commit d0d41b2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Tests/Presentation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,14 @@ public void Add2007Charts()
}
});
Stream stream = chart.GetWorkBookStream();
X.Excel excel = new(stream, true);
X.Excel excel = new(stream, true)
{
ShareComponentRelatedDetails = false,
ShareOsHardwareDetails = false,
ShareIpGeoLocation = false,
SharePackageRelatedDetails = false,
ShareUsageCounterDetails = false
};
X.Worksheet sheet = excel.GetWorksheet("Sheet1");
sheet.SetRow(10, 1, CommonMethod.CreateDataCellPayload()[1], null);
sheet.SetRow(11, 1, CommonMethod.CreateDataCellPayload()[2], null);
Expand Down

0 comments on commit d0d41b2

Please sign in to comment.