From dc8b444406085d5aaff349a2bb0cf12821cb3d68 Mon Sep 17 00:00:00 2001 From: David McFarland Date: Fri, 5 Apr 2024 09:19:02 -0300 Subject: [PATCH] dotnet: fix typo in name of web test --- pkgs/development/compilers/dotnet/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/dotnet/common.nix b/pkgs/development/compilers/dotnet/common.nix index e8c726f93bd7..a757dd36d17b 100644 --- a/pkgs/development/compilers/dotnet/common.nix +++ b/pkgs/development/compilers/dotnet/common.nix @@ -108,7 +108,7 @@ }; web = mkDotnetTest { - name = "publish"; + name = "web"; template = "web"; build = "dotnet publish -o $out"; runInputs = [ expect curl ];