Skip to content

Commit

Permalink
Fix syntax error from merge
Browse files Browse the repository at this point in the history
  • Loading branch information
atruskie committed Jun 18, 2021
1 parent e76cbc4 commit b08a36b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void TestHarmonicsAlgorithmOn440HertzHarmonic()
"440_harmonic");

this.SaveImage(
SpectrogramTools.GetSonogramPlusCharts(this.spectrogram, events, plots, null));
SpectrogramTools.GetSonogramPlusCharts(this.spectrogram, events, plots, null, "Harmonics 440Hz"));

Assert.AreEqual(1, events.Count);
Assert.IsInstanceOfType(events.First(), typeof(HarmonicEvent));
Expand Down Expand Up @@ -118,7 +118,7 @@ public void TestHarmonicsAlgorithmOn1000HertzHarmonic()
"1000_harmonic");

this.SaveImage(
SpectrogramTools.GetSonogramPlusCharts(this.spectrogram, events, plots, null));
SpectrogramTools.GetSonogramPlusCharts(this.spectrogram, events, plots, null, "Harmonics 1000Hz"));

Assert.AreEqual(1, events.Count);
Assert.IsInstanceOfType(events.First(), typeof(HarmonicEvent));
Expand Down

0 comments on commit b08a36b

Please sign in to comment.