Skip to content

Commit

Permalink
RavenDB-21960 Changed test classes to private
Browse files Browse the repository at this point in the history
  • Loading branch information
Lwiel committed Jan 17, 2024
1 parent 340500f commit f41c1e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/SlowTests/Issues/RavenDB-21960.cs
Original file line number Diff line number Diff line change
Expand Up @@ -152,12 +152,12 @@ public async Task CheckIndexesDebugMetadataEndpointWithNameParameter()
}
}

public class Order
private class Order
{
public DateTime OrderedAt { get; set; }
}

public class DummyIndex : AbstractJavaScriptIndexCreationTask
private class DummyIndex : AbstractJavaScriptIndexCreationTask
{
public DummyIndex()
{
Expand All @@ -172,7 +172,7 @@ public DummyIndex()
}
}

public class OtherDummyIndex : AbstractIndexCreationTask<Order>
private class OtherDummyIndex : AbstractIndexCreationTask<Order>
{
public OtherDummyIndex()
{
Expand Down

0 comments on commit f41c1e8

Please sign in to comment.