Skip to content

Commit 12e9677

Browse files
lint fix
1 parent 32b97ae commit 12e9677

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

OptimizelySDK.Tests/OptimizelyTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/*
22
* Copyright 2017-2023, Optimizely
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -6172,7 +6172,7 @@ public static void SetCulture(string culture)
61726172
public void TestSendOdpEventInvalidOptimizelyObject()
61736173
{
61746174
var optly = new Optimizely("Random datafile", null, LoggerMock.Object);
6175-
optly.SendOdpEvent("some_event", "some_action", new Dictionary<string, string>(){{"some_key", "some_value"}}, null);
6175+
optly.SendOdpEvent("some_event", "some_action", new Dictionary<string, string>() { { "some_key", "some_value" } }, null);
61766176
LoggerMock.Verify(
61776177
l => l.Log(LogLevel.ERROR, "Datafile has invalid format. Failing 'SendOdpEvent'."),
61786178
Times.Once);

0 commit comments

Comments
 (0)