Skip to content

Commit

Permalink
Reduced number of events to reduce running time on weak machine
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesmols committed Oct 19, 2023
1 parent e033a98 commit 9ec5303
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Serilog.Sinks.OCEL.Tests/JsonTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public void CanWriteToJsonFile()
[Fact]
public void CanWriteManyLogs()
{
for (int i = 0; i < 10_000; i++)
for (int i = 0; i < 100; i++)
{
Log.Information("Testing {emoji}", ":)");
}
Expand Down
2 changes: 1 addition & 1 deletion Serilog.Sinks.OCEL.Tests/LiteDbTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void CanWriteToDatabase()
[Fact]
public void CanWriteManyLogs()
{
for (int i = 0; i < 10_000; i++)
for (int i = 0; i < 100; i++)
{
Log.Information("Testing {emoji}", ":)");
}
Expand Down
2 changes: 1 addition & 1 deletion Serilog.Sinks.OCEL.Tests/XmlTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public void CanWriteToXmlFile()
[Fact]
public void CanWriteManyLogs()
{
for (int i = 0; i < 10_000; i++)
for (int i = 0; i < 100; i++)
{
Log.Information("Testing {emoji}", ":)");
}
Expand Down

0 comments on commit 9ec5303

Please sign in to comment.