Skip to content

Commit 8e1d961

Browse files
Ensure new-lines-before-eof are present.
1 parent 1b3545c commit 8e1d961

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+58
-58
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,4 @@ jobs:
112112
- name: Push to GitHub Feed
113113
run: dotnet nuget push ./nupkg/*.nupkg --skip-duplicate --source $GITHUB_FEED --api-key $GITHUB_TOKEN
114114
- name: Push to NuGet Feed
115-
run: dotnet nuget push ./nupkg/*.nupkg --skip-duplicate --source $NUGET_FEED --api-key $NUGET_KEY
115+
run: dotnet nuget push ./nupkg/*.nupkg --skip-duplicate --source $NUGET_FEED --api-key $NUGET_KEY

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525
"processId": "${command:pickProcess}"
2626
}
2727
,]
28-
}
28+
}

.vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
"problemMatcher": "$msCompile"
1313
}
1414
]
15-
}
15+
}

QueryBuilder.Tests/ExecutionTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ public void ShouldThrowException()
1515
});
1616
}
1717
}
18-
}
18+
}

QueryBuilder.Tests/Firebird/FirebirdLimitTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ public void LimitAndOffset()
5252
Assert.Equal(2, ctx.Bindings.Count);
5353
}
5454
}
55-
}
55+
}

QueryBuilder.Tests/HelperTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,4 +234,4 @@ public void WrapIdentifiers(string input, string escapeCharacter, string identif
234234
Assert.Equal(expected, result);
235235
}
236236
}
237-
}
237+
}

QueryBuilder.Tests/Infrastructure/TestCompiler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ public virtual MethodInfo Call_FindCompilerMethodInfo(Type clauseType, string me
4848
return FindCompilerMethodInfo(clauseType, methodName);
4949
}
5050
}
51-
}
51+
}

QueryBuilder.Tests/Infrastructure/TestCompilersContainer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,4 @@ public TestSqlResultContainer Compile(Query query)
103103
return new TestSqlResultContainer(resultKeyValues);
104104
}
105105
}
106-
}
106+
}

QueryBuilder.Tests/Infrastructure/TestSqlResultContainer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ public TestSqlResultContainer(IDictionary<string, SqlResult> dictionary) : base(
1010

1111
}
1212
}
13-
}
13+
}

QueryBuilder.Tests/Infrastructure/TestSupport.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ protected IReadOnlyDictionary<string, string> Compile(Query query)
1717
return Compilers.Compile(query).ToDictionary(s => s.Key, v => v.Value.ToString());
1818
}
1919
}
20-
}
20+
}

0 commit comments

Comments
 (0)