Skip to content

Commit b13c8e5

Browse files
committed
Fix analyzer tests to use TimeWarp.Mediator.Contracts.dll
Update references from MediatR.Contracts.dll to TimeWarp.Mediator.Contracts.dll in TimeWarpStateActionAnalyser_Tests.cs
1 parent 3eb3e6b commit b13c8e5

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Tests/TimeWarp.State.Analyzer.Tests/TimeWarpStateActionAnalyser_Tests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public record SampleInvalidRecordAction : IAction { }
2626
const string TimeWarpStateAssemblyPath = @"TimeWarp.State.dll";
2727
analyzerTest.TestState.AdditionalReferences.Add(MetadataReference.CreateFromFile(TimeWarpStateAssemblyPath));
2828

29-
const string MediatRContractsAssemblyPath = @"MediatR.Contracts.dll";
29+
const string MediatRContractsAssemblyPath = @"TimeWarp.Mediator.Contracts.dll";
3030
analyzerTest.TestState.AdditionalReferences.Add(MetadataReference.CreateFromFile(MediatRContractsAssemblyPath));
3131

3232
await analyzerTest.RunAsync();
@@ -55,7 +55,7 @@ public class SampleInvalidClassAction : IAction { }
5555
const string TimeWarpStateAssemblyPath = @"TimeWarp.State.dll";
5656
analyzerTest.TestState.AdditionalReferences.Add(MetadataReference.CreateFromFile(TimeWarpStateAssemblyPath));
5757

58-
const string MediatRContractsAssemblyPath = @"MediatR.Contracts.dll";
58+
const string MediatRContractsAssemblyPath = @"TimeWarp.Mediator.Contracts.dll";
5959
analyzerTest.TestState.AdditionalReferences.Add(MetadataReference.CreateFromFile(MediatRContractsAssemblyPath));
6060

6161
await analyzerTest.RunAsync();
@@ -84,7 +84,7 @@ public struct SampleInvalidStructAction : IAction { }
8484
const string TimeWarpStateAssemblyPath = @"TimeWarp.State.dll";
8585
analyzerTest.TestState.AdditionalReferences.Add(MetadataReference.CreateFromFile(TimeWarpStateAssemblyPath));
8686

87-
const string MediatRContractsAssemblyPath = @"MediatR.Contracts.dll";
87+
const string MediatRContractsAssemblyPath = @"TimeWarp.Mediator.Contracts.dll";
8888
analyzerTest.TestState.AdditionalReferences.Add(MetadataReference.CreateFromFile(MediatRContractsAssemblyPath));
8989

9090
await analyzerTest.RunAsync();
@@ -114,7 +114,7 @@ public class SampleInvalidDescendantClassAction : AbstractAction { }
114114
const string TimeWarpStateAssemblyPath = @"TimeWarp.State.dll";
115115
analyzerTest.TestState.AdditionalReferences.Add(MetadataReference.CreateFromFile(TimeWarpStateAssemblyPath));
116116

117-
const string MediatRContractsAssemblyPath = @"MediatR.Contracts.dll";
117+
const string MediatRContractsAssemblyPath = @"TimeWarp.Mediator.Contracts.dll";
118118
analyzerTest.TestState.AdditionalReferences.Add(MetadataReference.CreateFromFile(MediatRContractsAssemblyPath));
119119

120120
await analyzerTest.RunAsync();

0 commit comments

Comments
 (0)