Skip to content

Commit

Permalink
Update docs/core/testing/unit-testing-with-copilot.md
Browse files Browse the repository at this point in the history
Co-authored-by: David Pine <[email protected]>
  • Loading branch information
sigmade and IEvangelist authored Jan 18, 2025
1 parent 02b7b41 commit abf7c55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/core/testing/unit-testing-with-copilot.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class ProductService(
return product;
}

product = await _productDataStorage.GetProduct(productId);
product = await productDataStorage.GetProduct(productId);

if (product != null)
{
Expand Down

0 comments on commit abf7c55

Please sign in to comment.