diff --git a/Libraries/src/Amazon.Lambda.TestUtilities/README.md b/Libraries/src/Amazon.Lambda.TestUtilities/README.md index 8f7d68492..c38efeb79 100644 --- a/Libraries/src/Amazon.Lambda.TestUtilities/README.md +++ b/Libraries/src/Amazon.Lambda.TestUtilities/README.md @@ -5,7 +5,7 @@ Package includes test implementation of the interfaces from Amazon.Lambda.Core a ## Example xUnit test case using Amazon.Lambda.TestUtilities -The test case creates an instance of [TestLambdaContext](src/Amazon.Lambda.TestUtilities/TestLambdaContext.cs) for the function to use. +The test case creates an instance of [TestLambdaContext](/Libraries/src/Amazon.Lambda.TestUtilities/TestLambdaContext.cs) for the function to use. By default all properties except for the Logger property are set to null. The default Logger will write to the console. Any properties that your function uses will need to be set on the TestLambdaContext. ``` @@ -23,4 +23,4 @@ public void TestToUpperFunction() Assert.Equal("HELLO WORLD", upperCase); } -``` \ No newline at end of file +```