Skip to content

Commit 9087a92

Browse files
committed
rc1
1 parent 8e2ea4e commit 9087a92

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Source/Machine.VSTestAdapter.Specs/Discovery/When_DisableFullTestNameInIDE_is_off.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class When_DisableFullTestNameInIDE_is_off : WithFakes
2525

2626
It should_use_full_type_and_field_name_for_display_name = () => {
2727
The<ITestCaseDiscoverySink>()
28-
.WasToldTo(d => d.SendTestCase(Param<TestCase>.Matches(t => t.DisplayName.Equals("When something should pass", StringComparison.Ordinal))))
28+
.WasToldTo(d => d.SendTestCase(Param<TestCase>.Matches(t => t.DisplayName.Equals("When something it should pass", StringComparison.Ordinal))))
2929
.OnlyOnce();
3030
};
3131
}

Source/Machine.VSTestAdapter/Helpers/SpecTestHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static TestCase GetVSTestCaseFromMSpecTestCase(string source, MSpecTestCa
1313

1414
TestCase testCase = new TestCase(vsTest.FullyQualifiedName, testRunnerUri, source)
1515
{
16-
DisplayName = disableFullTestNames ? mspecTestCase.SpecificationDisplayName : $"{mspecTestCase.ContextDisplayName} {mspecTestCase.SpecificationDisplayName}",
16+
DisplayName = disableFullTestNames ? mspecTestCase.SpecificationDisplayName : $"{mspecTestCase.ContextDisplayName} it {mspecTestCase.SpecificationDisplayName}",
1717
CodeFilePath = mspecTestCase.CodeFilePath,
1818
LineNumber = mspecTestCase.LineNumber
1919
};

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
environment:
2-
nuget_version: '2.0.0-beta5'
2+
nuget_version: '2.0.0-rc1'
33
vsix_version: '2.0.0'
44
assembly_version: '2.0.0'
55

0 commit comments

Comments
 (0)