From 5aa86aaf49ba11dc2cfa802c261dfde6284dac3a Mon Sep 17 00:00:00 2001 From: attiasas Date: Sun, 25 Feb 2024 11:26:12 +0200 Subject: [PATCH] try fix win tests --- build/utils/dotnet/solution/solution_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/utils/dotnet/solution/solution_test.go b/build/utils/dotnet/solution/solution_test.go index 6902e3a4..9c45f31a 100644 --- a/build/utils/dotnet/solution/solution_test.go +++ b/build/utils/dotnet/solution/solution_test.go @@ -163,7 +163,7 @@ func TestLoad(t *testing.T) { expectedProjectCount int }{ {"noExcludePattern", "", 2}, - {"excludePattern", filepath.Join(`(^.*.*`, "proj1", ".*.*$)"), 1}, + {"excludePattern", `(^.*.*` + (string)(filepath.Separator) + `proj1` + (string)(filepath.Separator) + `.*.*$)`, 1}, } for _, testCase := range testCases {