Skip to content

Commit eef2ba9

Browse files
committed
fix test
1 parent 9bc8870 commit eef2ba9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Fakes/OpenActive.FakeDatabase.NET.Tests/FakeBookingSystemTest.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,18 @@
44
using System;
55
using ServiceStack.OrmLite;
66
using System.Data;
7+
using Microsoft.Extensions.Logging.Abstractions;
78

89
namespace OpenActive.FakeDatabase.NET.Test
910
{
1011
public class FakeBookingSystemTest
1112
{
1213
private readonly ITestOutputHelper output;
13-
private readonly FakeBookingSystem fakeBookingSystem = new FakeBookingSystem(false);
14+
private readonly FakeBookingSystem fakeBookingSystem = new FakeBookingSystem
15+
(
16+
false,
17+
new NullLogger<FakeBookingSystem>()
18+
);
1419

1520
public FakeBookingSystemTest(ITestOutputHelper output)
1621
{

0 commit comments

Comments
 (0)