sinshu / go-meltysynth

A SoundFont MIDI synthesizer written in pure Golang
Other
60 stars 9 forks source link

Tests fail when using MELTYSYNTH environment variables #3

Closed Michael-F-Ellis closed 1 year ago

Michael-F-Ellis commented 1 year ago

There's a typo in loadGM in testing_test.go

func loadGS(t *testing.T) *SoundFont {
    return loadSoundFont(t, envGS, defaultPathGS)
}

func loadGM(t *testing.T) *SoundFont {
    return loadSoundFont(t, envGS, defaultPathGM)
}

Should be return loadSoundFont(t, envGM, defaultPathGM)

kardianos commented 1 year ago

Woops! Sorry about that.

sinshu commented 1 year ago

The PR was merged, thanks 😄