From 616aeba156d617c98955e437f3283ae66206c2ba Mon Sep 17 00:00:00 2001 From: John Luo Date: Thu, 25 Oct 2018 12:50:07 -0700 Subject: [PATCH] Use chrome instead of chromium on Ubuntu --- test/Kestrel.Transport.FunctionalTests/ChromeConstants.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Kestrel.Transport.FunctionalTests/ChromeConstants.cs b/test/Kestrel.Transport.FunctionalTests/ChromeConstants.cs index e6f19feb73..9e527a17b6 100644 --- a/test/Kestrel.Transport.FunctionalTests/ChromeConstants.cs +++ b/test/Kestrel.Transport.FunctionalTests/ChromeConstants.cs @@ -19,7 +19,7 @@ namespace Interop.FunctionalTests } else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) { - return Path.Combine("/usr", "bin", "chromium-browser"); + return Path.Combine("/usr", "bin", "google-chrome"); } throw new PlatformNotSupportedException();