Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 7449d83

Browse files
fix: null handling for sonarQube
1 parent d1b44d2 commit 7449d83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ServiceLayer.Mesh.Tests/FileTransformerTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public async Task TransformFileAsync_UnexpectedExceptionWithNullMetaData_LogsUnk
161161
_fileParserMock.Setup(p => p.Parse(_testStream)).Throws(unexpectedException);
162162

163163
// Act
164-
var result = await _fileTransformer.TransformFileAsync(_testStream, null);
164+
var result = await _fileTransformer.TransformFileAsync(_testStream, null!);
165165

166166
// Assert
167167
Assert.Single(result);

0 commit comments

Comments
 (0)