Skip to content

Commit 8a8df71

Browse files
committed
Fix
1 parent 030695e commit 8a8df71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/dotnet-watch.Tests/HotReload/ApplyDeltaTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ public async Task BlazorWasm(bool projectSpecifiesCapabilities)
328328
App.AssertOutputContains(MessageDescriptor.ConfiguredToLaunchBrowser);
329329

330330
// Browser is launched based on blazor-devserver output "Now listening on: ...".
331-
await App.WaitUntilOutputContains($"dotnet watch ⌚ Launching browser: http://localhost:{port}/");
331+
await App.WaitUntilOutputContains($"dotnet watch ⌚ Launching browser: http://localhost:{port}");
332332

333333
// Middleware should have been loaded to blazor-devserver before the browser is launched:
334334
App.AssertOutputContains("dbug: Microsoft.AspNetCore.Watch.BrowserRefresh.BlazorWasmHotReloadMiddleware[0]");
@@ -395,7 +395,7 @@ public async Task Razor_Component_ScopedCssAndStaticAssets()
395395

396396
App.AssertOutputContains(MessageDescriptor.ConfiguredToUseBrowserRefresh);
397397
App.AssertOutputContains(MessageDescriptor.ConfiguredToLaunchBrowser);
398-
App.AssertOutputContains($"dotnet watch ⌚ Launching browser: http://localhost:{port}/");
398+
App.AssertOutputContains($"dotnet watch ⌚ Launching browser: http://localhost:{port}");
399399
App.Process.ClearOutput();
400400

401401
var scopedCssPath = Path.Combine(testAsset.Path, "RazorClassLibrary", "Components", "Example.razor.css");

0 commit comments

Comments
 (0)