Skip to content
Prev Previous commit
Next Next commit
Renamed With tests for easier grouping
  • Loading branch information
dsuarezv committed May 6, 2017
commit 35a7dc648841d543fef88e11d8206cb541475980
4 changes: 2 additions & 2 deletions src/embed_tests/TestPyWith.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public void Dispose()
/// Test that exception is raised in context manager that ignores it.
/// </summary>
[Test]
public void TestPositiveWith()
public void TestWithPositive()
{
var locals = new PyDict();

Expand Down Expand Up @@ -60,7 +60,7 @@ def fail(self):
/// Test that exception is not raised in context manager that handles it
/// </summary>
[Test]
public void TestNegativeWith()
public void TestWithNegative()
{
var locals = new PyDict();

Expand Down