mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
refactor: removed unused code, unnecessary typecasts and fixed small warnings
This commit is contained in:
parent
270b0ae74e
commit
f6e448c1ba
10 changed files with 8 additions and 162 deletions
|
@ -6,13 +6,13 @@ import (
|
|||
|
||||
func TestLongestCommonPrefix(t *testing.T) {
|
||||
expected := "/Music/iTunes 1/iTunes Media/Music/"
|
||||
actual := LongestCommonPrefix(test_strings)
|
||||
actual := LongestCommonPrefix(testStrings)
|
||||
if actual != expected {
|
||||
t.Errorf("Couldn't find longest common prefix: want '%s', got '%s'", expected, actual)
|
||||
}
|
||||
}
|
||||
|
||||
var test_strings = []string{
|
||||
var testStrings = []string{
|
||||
"/Music/iTunes 1/iTunes Media/Music/ABBA/Gold_ Greatest Hits/Dancing Queen.m4a",
|
||||
"/Music/iTunes 1/iTunes Media/Music/ABBA/Gold_ Greatest Hits/Mamma Mia.m4a",
|
||||
"/Music/iTunes 1/iTunes Media/Music/Art Blakey/A Night At Birdland, Vol. 1/01 Annoucement By Pee Wee Marquette.m4a",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue