From afaae59b21ed063aeed30ff4a3838797b3831832 Mon Sep 17 00:00:00 2001 From: slang25 Date: Thu, 26 Jan 2017 13:54:02 +0000 Subject: [PATCH] Update README.md Fixed link --- Libraries/src/Amazon.Lambda.TestUtilities/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +```