Skip to content

Commit cf46780

Browse files
authored
Merge pull request #2 from CodeMangler/feat/upgrade-dotnet6-github-actions
feat: Upgrade to .NET 6, add CI workflow, and fix tests
2 parents fa0b543 + f8f2e23 commit cf46780

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/dotnet-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ on:
44
push:
55
branches: [ '*' ]
66
pull_request:
7-
branches: [ '*' ]
7+
branches: [ master ]
8+
workflow_dispatch:
89

910
jobs:
1011
build:

UnitTests/FuzzyStringComparisonAlgorithmTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class FuzzyStringComparisonAlgorithmTest
1010
public void ShouldIgnoreGuids()
1111
{
1212
string lhs =
13-
"{b736467c-b1ff-4bbd-9654-a5312f1ba846\0x0 and some text and {47484565-22b5-4e72-a365-b0bdda187465}";
13+
"{b736467c-b1ff-4bbd-9654-a5312f1ba846}\0 and some text and {47484565-22b5-4e72-a365-b0bdda187465}";
1414
string rhs1 =
1515
"{b736467c-b1ff-4bbd-9654-a5312f1ba846} and some text and {a3e8ee65-3c13-4c48-bc94-253da3fac798}";
1616
string rhs2 =

0 commit comments

Comments
 (0)