Skip to content

Commit 7f4a755

Browse files
committed
Fixed build warning and appveyor.yml still containing nuget pack commands
1 parent 60b1c41 commit 7f4a755

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

appveyor.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,5 @@ build_script:
1313
test: off
1414
skip_tags: true
1515

16-
after_build:
17-
- cmd: nuget pack src\TestStack.BDDfy\TestStack.BDDfy.nuspec -BasePath src\TestStack.BDDfy\ -version "%GitVersion_NuGetVersion%" -prop "configuration=%CONFIGURATION%"
18-
- cmd: appveyor PushArtifact "TestStack.BDDfy.%GitVersion_NuGetVersion%.nupkg"
19-
20-
- cmd: 7z a "TestStack.BDDfy_%GitVersion_NuGetVersion%.zip" -r src\TestStack.BDDfy\bin\%CONFIGURATION%\*.*
21-
- cmd: appveyor PushArtifact "TestStack.BDDfy_%GitVersion_NuGetVersion%.zip"
22-
2316
cache:
2417
- src\packages -> **\packages.config # preserve "packages" directory in the root of build folder but will reset it if packages.config is modified

src/TestStack.BDDfy.Tests/NetToStringTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ public void OneLetterWordInTheBeginningOfStringIsTurnedIntoAWord()
6767
[InlineData("WhenMethodTakes__one__and__two__parameters", "When method takes <one> and <two> parameters")]
6868
public void CanDealWithExampleStepNames(string stepName, string expectedStepTitle)
6969
{
70-
NetToString.Convert(stepName).ShouldBe(expectedStepTitle, Case.Sensitive);
70+
NetToString.Convert(stepName).ShouldBe(expectedStepTitle);
7171
}
7272

7373
[Theory]
7474
[InlineData("GivenThereAre__två__Cucumbers", "Given there are <två> cucumbers")]
7575
public void ReportsIllegalExampleStepNames(string stepName, string expectedStepTitle) {
7676
var exception = Record.Exception(() => {
77-
NetToString.Convert(stepName).ShouldBe(expectedStepTitle, Case.Sensitive);
77+
NetToString.Convert(stepName).ShouldBe(expectedStepTitle);
7878
});
7979

8080
exception.ShouldNotBeNull();

0 commit comments

Comments
 (0)