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 c3c9ee0 commit 02b7b41
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 @@ -22,7 +22,7 @@ public class ProductService(
{
var product = await cacheClient.GetProduct(productId);

if (product != null)
if (product is not null)
{
return product;
}
Expand Down

0 comments on commit 02b7b41

Please sign in to comment.