Skip to content

Commit e056b89

Browse files
format fix 2
1 parent bc234fb commit e056b89

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

OptimizelySDK.Tests/CmabTests/DefaultCmabServiceTest.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -652,9 +652,5 @@ private static Experiment CreateExperiment(string ruleId, List<string> attribute
652652
Cmab = attributeIds == null ? null : new Entity.Cmab(attributeIds, 10000),
653653
};
654654
}
655-
656-
657-
658-
659655
}
660656
}

OptimizelySDK.Tests/CmabTests/OptimizelyUserContextCmabTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,8 +507,8 @@ private void ConfigureCmabExperiment(ProjectConfig config,
507507
Assert.IsNotNull(experiment, $"Experiment {experimentKey} should exist for CMAB tests.");
508508

509509
experiment.Cmab = new Entity.Cmab(attributeList, trafficAllocation);
510-
511510
config.ExperimentIdMap[experiment.Id] = experiment;
511+
512512
if (config.ExperimentKeyMap.ContainsKey(experiment.Key))
513513
{
514514
config.ExperimentKeyMap[experiment.Key] = experiment;

OptimizelySDK/Bucketing/DecisionService.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public class DecisionService
5858
#if USE_CMAB
5959
private ICmabService CmabService;
6060
#endif
61-
61+
6262
/// <summary>
6363
/// Associative array of user IDs to an associative array
6464
/// of experiments to variations.This contains all the forced variations
@@ -68,8 +68,7 @@ public class DecisionService
6868
#if NET35
6969
private Dictionary<string, Dictionary<string, string>> ForcedVariationMap;
7070
#else
71-
private System.Collections.Concurrent.ConcurrentDictionary<string,
72-
Dictionary<string, string>> ForcedVariationMap;
71+
private System.Collections.Concurrent.ConcurrentDictionary<string, Dictionary<string, string>> ForcedVariationMap;
7372
#endif
7473

7574
/// <summary>

0 commit comments

Comments
 (0)