aboutsummaryrefslogtreecommitdiff
path: root/RhSolutions.Tests
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2023-04-20 09:37:07 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2023-04-20 09:37:07 +0300
commit6bfd1d981bea4fd98b98cf8b8a2a0ebb176f5a6a (patch)
tree5c31cf27bc96d2dccfb51ea1ec5106195ba0dccb /RhSolutions.Tests
parenta6caea17873f64beadb6f1b0ef37966393d85484 (diff)
Simplify class names
Diffstat (limited to 'RhSolutions.Tests')
-rw-r--r--RhSolutions.Tests/CanReadProducts.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/RhSolutions.Tests/CanReadProducts.cs b/RhSolutions.Tests/CanReadProducts.cs
index e9be68c..fd33a69 100644
--- a/RhSolutions.Tests/CanReadProducts.cs
+++ b/RhSolutions.Tests/CanReadProducts.cs
@@ -7,7 +7,7 @@ namespace RhSolutions.Tests;
public class CanReadProducts : IDisposable
{
private RhSolutionsAddIn _addIn;
- private IExcelReader _reader;
+ private IReader _reader;
private Workbook _testWorkbook;
public CanReadProducts()
@@ -15,7 +15,7 @@ public class CanReadProducts : IDisposable
_addIn = new();
_testWorkbook = Util.Application.Workbooks.Add();
_addIn.AutoOpen();
- _reader = RhSolutionsAddIn.ServiceProvider.GetRequiredService<IExcelReader>();
+ _reader = RhSolutionsAddIn.ServiceProvider.GetRequiredService<IReader>();
}
[ExcelFact]