From f8d95a534aff8485725c9d367eb99ee4d35f7c79 Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Wed, 10 Jul 2019 08:17:45 -0500 Subject: [PATCH] Update code sample line (#13222) --- .../RazorPagesProject.Tests/CustomWebApplicationFactory.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/test/integration-tests/samples/2.x/IntegrationTestsSample/tests/RazorPagesProject.Tests/CustomWebApplicationFactory.cs b/aspnetcore/test/integration-tests/samples/2.x/IntegrationTestsSample/tests/RazorPagesProject.Tests/CustomWebApplicationFactory.cs index 8da4245ba6..96538a868f 100644 --- a/aspnetcore/test/integration-tests/samples/2.x/IntegrationTestsSample/tests/RazorPagesProject.Tests/CustomWebApplicationFactory.cs +++ b/aspnetcore/test/integration-tests/samples/2.x/IntegrationTestsSample/tests/RazorPagesProject.Tests/CustomWebApplicationFactory.cs @@ -51,8 +51,8 @@ namespace RazorPagesProject.Tests } catch (Exception ex) { - logger.LogError(ex, $"An error occurred seeding the " + - "database with test messages. Error: {ex.Message}"); + logger.LogError(ex, "An error occurred seeding the " + + $"database with test messages. Error: {ex.Message}"); } } });