diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2023-05-18 14:53:52 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2023-05-18 14:53:52 +0300 |
commit | 28d6c3b6b9a13fb6a7a6273346a5eb5b20b17b4a (patch) | |
tree | 79d3c11730929edbf5d87b0cdfd3c8451fb52e59 /RhSolutions.Tests | |
parent | 8902d51c14f2679aa3bf168dc3a02056a1352f57 (diff) |
Fix file naming
Diffstat (limited to 'RhSolutions.Tests')
-rw-r--r-- | RhSolutions.Tests/CanReadProducts.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/RhSolutions.Tests/CanReadProducts.cs b/RhSolutions.Tests/CanReadProducts.cs index df0ce73..14a89e6 100644 --- a/RhSolutions.Tests/CanReadProducts.cs +++ b/RhSolutions.Tests/CanReadProducts.cs @@ -45,14 +45,14 @@ public class CanReadProducts : IDisposable Assert.Equal(3, products.Count()); } - [ExcelFact(Workbook = @"TestWorkbooks\TestSpecificaion.xlsx")] + [ExcelFact(Workbook = @"TestWorkbooks\TestSpecification.xlsx")] public void CanReadWorkbook() { Worksheet worksheet = Util.Workbook.Worksheets[1]; var result = _reader.ReadProducts(new[] { worksheet }); Assert.NotNull(result); Assert.NotEmpty(result); - Assert.Equal("TestSpecificaion", result.First().Item1); + Assert.Equal("TestSpecification", result.First().Item1); var products = result.First().Item2; Assert.Equal(46, products.Count()); Assert.Equal(29266, products.Sum(p => p.Value)); |