Skip to content

Commit

Permalink
chore: code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Kieranties committed Apr 30, 2019
1 parent 1e76257 commit 6fc001d
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using FluentAssertions;
// Licensed under the MIT license. See https://kieranties.mit-license.org/ for full license information.

using FluentAssertions;
using SimpleVersion.Pipeline;
using SimpleVersion.Pipeline.Formatting;
using System;
Expand Down Expand Up @@ -56,7 +58,6 @@ public void Apply_LabelParts_NonRelease_Is_Formatted(
context.Result.Formats["Semver2"].Should().Be(fullExpected);
}


[Theory]
[MemberData(nameof(LabelParts))]
public void Apply_LabelParts_Release_Is_Formatted(
Expand All @@ -72,7 +73,7 @@ public void Apply_LabelParts_Release_Is_Formatted(
Result = Utils.GetVersionResult(height)
};
context.Result.Version = context.Configuration.Version;

// Act
_sut.Apply(context);

Expand Down Expand Up @@ -125,7 +126,6 @@ public void Apply_MetaDataParts_Release_Is_Formatted(
string version,
int height)
{

// Arrange
var context = new VersionContext
{
Expand Down

0 comments on commit 6fc001d

Please sign in to comment.