Skip to content

Commit b076017

Browse files
committed
Fix ABTest access control
1 parent 9ca9493 commit b076017

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Experiments/Experiments/ABTest.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import AutomatticTracks
22

3-
/// ABTest defines AB testing experiments and runs the tests based on their variations from the ExPlat service.
3+
/// ABTest adds A/B testing experiments and runs the tests based on their variations from the ExPlat service.
44
///
5-
enum ABTest: String, CaseIterable {
5+
public enum ABTest: String, CaseIterable {
66
/// Throwaway case, to prevent a compiler error:
77
/// `An enum with no cases cannot declare a raw type`
88
case null
@@ -13,7 +13,7 @@ enum ABTest: String, CaseIterable {
1313
}
1414
}
1515

16-
extension ABTest {
16+
public extension ABTest {
1717
/// Start the AB Testing platform if any experiment exists
1818
///
1919
static func start() {

0 commit comments

Comments
 (0)