Skip to content

Commit

Permalink
dotnet format autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
tkrch committed Jul 15, 2024
1 parent 17fd926 commit 4e5fc0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Migration.Toolkit.Tests/MediaHelperTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class UnitTest1
// [InlineData("~/custom_library_global_dir/mysite/sub-dir/sub-sub-dir/somefile.png?ext=.png", "/custom_library_global_dir/mysite/sub-dir/sub-sub-dir/somefile.png", null, true, MediaKind.MediaFile, MediaLinkKind.DirectMediaPath)]
// direct media path is not supported for absolute physical paths eg. C:\MyLibraries
// direct media path is not supported for absolute network share paths eg. \\myserver\MyLibraries
public void ParseMediaLink(string mediaUri, string? expectedPath, string? expectedGuid, bool expectSuccess, MediaKind expectedMediaKind, MediaLinkKind expectedMediaLinkKind)
public void ParseMediaLink(string? mediaUri, string? expectedPath, string? expectedGuid, bool expectSuccess, MediaKind expectedMediaKind, MediaLinkKind expectedMediaLinkKind)
{
Guid? expectedMediaId = Guid.TryParse(expectedGuid ?? "", out var eg) ? eg : null;

Expand Down

0 comments on commit 4e5fc0a

Please sign in to comment.