From 6bfd1d981bea4fd98b98cf8b8a2a0ebb176f5a6a Mon Sep 17 00:00:00 2001 From: Sergey Chebotar Date: Thu, 20 Apr 2023 09:37:07 +0300 Subject: Simplify class names --- RhSolutions.Tests/CanReadProducts.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'RhSolutions.Tests') 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(); + _reader = RhSolutionsAddIn.ServiceProvider.GetRequiredService(); } [ExcelFact] -- cgit v1.2.3