Skip to content

Commit

Permalink
Fix breakage from dotnet-config-lib bump
Browse files Browse the repository at this point in the history
Missed updating a test
  • Loading branch information
kzu committed Dec 8, 2020
1 parent 7630d12 commit df7433e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/VisualStudio.Tests/CommandFactoryTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ public async Task when_update_command_and_self_option_is_specified_then_update_s
[Fact]
public async Task when_saved_command_is_specified_then_saved_command_is_created()
{
var config = Config.Build(Path.GetTempFileName());
config.SetString(Commands.DotNetConfig.Section, Commands.DotNetConfig.SubSection, "foo", "update|main");
var config = DotNetConfig.Config.Build(Path.GetTempFileName());
config.SetString(Commands.DotNetConfig.Section, Commands.DotNetConfig.SubSection, "foo", "update|main", null);

var commandFactory = new CommandFactory(config);

Expand Down

0 comments on commit df7433e

Please sign in to comment.