File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Tests/OptimizelyTests-Common Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Optimizely Swift SDK Changelog
2
2
3
3
## 4.0.0-beta
4
- April 27 , 2023
4
+ April 28 , 2023
5
5
6
6
### New Features
7
7
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ function push_changes {
77
77
;;
78
78
esac
79
79
}
80
- git push https://${GITHUB_TOKEN} @github.com/${REPO_SLUG} ${AUTOBRANCH}
80
+ git push -f https://${GITHUB_TOKEN} @github.com/${REPO_SLUG} ${AUTOBRANCH}
81
81
PR_URL=$( hub pull-request --no-edit -b ${BRANCH} )
82
82
echo -e " ${COLOR_CYAN} ATTENTION:${COLOR_RESET} review and merge ${COLOR_CYAN}${PR_URL}${COLOR_RESET} "
83
83
echo " then to release to cocoapods use Git action's Trigger build with the following payload:"
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ class OdpEventManagerTests: XCTestCase {
29
29
let customData : [ String : Any ] = [ " key-1 " : " value-1 " ,
30
30
" key-2 " : 12.5 ,
31
31
" model " : " overruled " ]
32
+ var originalMaxQueueSize = 0
32
33
33
34
override func setUp( ) {
34
35
OTUtils . clearAllEventQueues ( )
@@ -40,10 +41,12 @@ class OdpEventManagerTests: XCTestCase {
40
41
manager = OdpEventManager ( sdkKey: " any " ,
41
42
apiManager: apiManager)
42
43
manager. odpConfig = odpConfig
44
+ originalMaxQueueSize = manager. maxQueueSize
43
45
}
44
46
45
47
override func tearDown( ) {
46
48
OTUtils . clearAllEventQueues ( )
49
+ manager. maxQueueSize = originalMaxQueueSize
47
50
}
48
51
49
52
// MARK: - save and restore events
You can’t perform that action at this time.
0 commit comments