Skip to content

Commit 2af827f

Browse files
Fix for Useless assignment to local variable
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
1 parent 0dc0b34 commit 2af827f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MandMCounter.Tests/MandMTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ public void CountMandMsInACylinderWithNullUnitTest()
329329
float radius = 5;
330330

331331
//Act
332-
float result = Calculator.CountMandMs(unit, height, radius);
332+
Calculator.CountMandMs(unit, height, radius);
333333
}
334334
catch (Exception ex)
335335
{

0 commit comments

Comments
 (0)