Skip to content

Commit

Permalink
Adjust pre-existing test
Browse files Browse the repository at this point in the history
  • Loading branch information
stakx committed Dec 30, 2022
1 parent 4aab2ab commit 8b2b749
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PublicApiGeneratorTests/Record.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ public void Should_output_simple_record()
public class User : System.IEquatable<PublicApiGeneratorTests.Examples.User>
{
public User(string login, string password) { }
public string login { get; set; }
public string password { get; set; }
public string login { get; init; }
public string password { get; init; }
}
}");
}
Expand Down

0 comments on commit 8b2b749

Please sign in to comment.