Skip to content

Commit

Permalink
Version 0.7.8
Browse files Browse the repository at this point in the history
  • Loading branch information
dsafa committed Feb 14, 2019
2 parents 6cfc4a1 + 9240bee commit c8dbbc0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/AudioBand.Test/SettingsViewModelsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ public void MatchingSettingsShouldCreateVmsInOrder()

_audioSourceMock.SetupGet(s => s[It.Is<string>(x => x == setting1)]).Returns(val1);
_audioSourceMock.SetupGet(s => s[It.Is<string>(x => x == setting2)]).Returns(val2);
_audioSourceMock.Setup(s => s.GetSettingType(It.Is<string>(x => x == setting1))).Returns(typeof(string));
_audioSourceMock.Setup(s => s.GetSettingType(It.Is<string>(x => x == setting2))).Returns(typeof(string));

var settingModels = new List<AudioSourceSetting>
{
Expand Down

0 comments on commit c8dbbc0

Please sign in to comment.