Skip to content

Commit 3bfbe0c

Browse files
committed
capitalize typed and remove unused property in Person
1 parent 664a231 commit 3bfbe0c

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

tests/MongoDB.Driver.Tests/SortDefinitionBuilderTests.cs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public void Ascending_using_extension_methods()
166166
}
167167

168168
[Fact]
169-
public void Ascending_typed_using_extension_methods()
169+
public void Ascending_Typed_using_extension_methods()
170170
{
171171
var subject = CreateSubject<Person>();
172172

@@ -188,7 +188,7 @@ public void Descending_using_extension_methods()
188188
}
189189

190190
[Fact]
191-
public void Descending_typed_using_extension_methods()
191+
public void Descending_Typed_using_extension_methods()
192192
{
193193
var subject = CreateSubject<Person>();
194194

@@ -248,9 +248,6 @@ private class Person
248248

249249
[BsonElement("ln")]
250250
public string LastName { get; set; }
251-
252-
[BsonElement("age")]
253-
public int Age { get; set; }
254251
}
255252
}
256253
}

0 commit comments

Comments
 (0)