Skip to content
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
[csharp] update sample after #2528
  • Loading branch information
karismann committed Mar 30, 2019
commit 6448810333281e702378a8b423161f0e77a88a5e
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ public class PetTests
[SetUp]
public void Init()
{
// TODO uncomment below to create an instance of Pet
//instance = new Pet();
instance = new Pet(name: "Csharp test", photoUrls: new List<string> { "http://petstore.com/csharp_test" });
}

/// <summary>
Expand All @@ -53,7 +52,6 @@ public void Init()
[TearDown]
public void Cleanup()
{
instance = new Pet(name: "Csharp test", photoUrls: new List<string> { "http://petstore.com/csharp_test" });

}

Expand Down