Skip to content

Commit 3f1e72c

Browse files
committed
prefix 'a' on arguments removed
1 parent 600fb37 commit 3f1e72c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/FirebirdSql.Data.FirebirdClient.Tests/FbDatabaseInfoTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,12 +148,12 @@ public async Task PerformanceAnalysis_UPDATE_Test()
148148
Assert.That(readIdxCount[tableIdTest], Is.EqualTo(1));
149149
}
150150

151-
IDictionary<short, ulong> GetAffectedTables(IDictionary<short, ulong> aStatisticInfoBefore, IDictionary<short, ulong> aStatisticInfoAfter)
151+
IDictionary<short, ulong> GetAffectedTables(IDictionary<short, ulong> statisticInfoBefore, IDictionary<short, ulong> statisticInfoAfter)
152152
{
153153
var result = new Dictionary<short, ulong>();
154-
foreach (var keyValuePair in aStatisticInfoAfter)
154+
foreach (var keyValuePair in statisticInfoAfter)
155155
{
156-
if (aStatisticInfoBefore.TryGetValue(keyValuePair.Key, out var value))
156+
if (statisticInfoBefore.TryGetValue(keyValuePair.Key, out var value))
157157
{
158158
var counter = keyValuePair.Value - value;
159159
if (counter > 0)

0 commit comments

Comments
 (0)