Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing Key collision for test run parameters #328

Merged
merged 8 commits into from
Dec 6, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
PR comments
  • Loading branch information
jayaranigarg committed Dec 6, 2017
commit ddee7e56f0e2d6243aca50f9bbf6af68f9293b0c
Original file line number Diff line number Diff line change
Expand Up @@ -325,9 +325,7 @@ public void RunTestsShouldClearSessionParametersAcrossRuns()
// Trigger another Run
this.TestExecutionManager.RunTests(tests, this.runContext, this.frameworkHandle, new TestRunCancellationToken());

CollectionAssert.Contains(
DummyTestClass.TestContextProperties.ToList(),
new KeyValuePair<string, object>("webAppUrl", "http://updatedLocalHost"));
Assert.AreEqual(DummyTestClass.TestContextProperties["webAppUrl"], "http://updatedLocalHost");
}

#endregion
Expand Down