Skip to content

Commit

Permalink
fixed unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
kayone committed May 8, 2019
1 parent cd12d68 commit 38318ec
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/AppGet.Tests/Commands/CommandOptionExtensionsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ public void should_create_dic_from_options()
var dic = installCommand.ToDictionary();

dic["cmd_package"].Should().Be(installCommand.Package);
dic["cmd_force"].Should().Be("False");
dic["cmd_interactivity"].Should().Be("interactive");
dic["cmd_force"].Should().Be("false");
dic["cmd_force"].Should().Be("False");
dic["cmd_tag"].Should().Be(null);
dic["cmd_commandname"].Should().Be("install");
}
Expand Down

0 comments on commit 38318ec

Please sign in to comment.