Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tratcher committed May 29, 2021
1 parent bc541b7 commit 2703389
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void EnableSession_InvalidMode_Fails()
};

ex = Assert.Throws<ArgumentException>(() => transformProvider.Apply(builderContext));
Assert.Equal("No Yarp.ReverseProxy.Service.SessionAffinity.ISessionAffinityProvider was found for the id 'Invalid'. (Parameter 'id')", ex.Message);
Assert.Equal($"No {typeof(ISessionAffinityProvider).FullName} was found for the id 'Invalid'. (Parameter 'id')", ex.Message);
}
}
}

0 comments on commit 2703389

Please sign in to comment.