Skip to content

Commit

Permalink
change to private
Browse files Browse the repository at this point in the history
  • Loading branch information
pacna committed Jan 18, 2024
1 parent d65d560 commit 75def38
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Edge.MyMusic/src/Edge.MyMusic.Tests/MusicServiceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public async Task CanUpdateFavoriteSongAsync()
}


internal void AssertEqual(MusicDocument expected, SongResponse actual)
private static void AssertEqual(MusicDocument expected, SongResponse actual)
{
Assert.Equal(expected.Id, actual.Id);
Assert.Equal(expected.Album, actual.Album);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public IEnumerable<ValidationResult> Validate(ValidationContext validationContex
});
}

internal IEnumerable<ValidationResult> Validate(IReadOnlyDictionary<string, string> properties)
private IEnumerable<ValidationResult> Validate(IReadOnlyDictionary<string, string> properties)
{
if (!Uri.IsWellFormedUriString(this.Path, UriKind.Absolute))
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public IEnumerable<ValidationResult> Validate(ValidationContext validationContex
});
}

internal IEnumerable<ValidationResult> Validate(IReadOnlyDictionary<string, string?> properties)
private IEnumerable<ValidationResult> Validate(IReadOnlyDictionary<string, string?> properties)
{

if (!string.IsNullOrEmpty(this.Path) && !Uri.IsWellFormedUriString(this.Path, UriKind.Absolute))
Expand Down

0 comments on commit 75def38

Please sign in to comment.