File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ export interface IUniversalFlagConfigResponse {
4343}
4444
4545export interface IBanditParametersResponse {
46- createdAt : string ; // ISO formatted string
46+ updatedAt : string ; // ISO formatted string
4747 bandits : Record < string , BanditParameters > ;
4848}
4949
Original file line number Diff line number Diff line change @@ -113,7 +113,9 @@ export function getTestAssignments(
113113 return assignments ;
114114}
115115
116- const configCreatedAt = readMockUFCResponse ( MOCK_UFC_RESPONSE_FILE ) . createdAt ;
116+ const configCreatedAt = (
117+ readMockUFCResponse ( MOCK_UFC_RESPONSE_FILE ) as IUniversalFlagConfigResponse
118+ ) . createdAt ;
117119const testHelperInstantiationDate = new Date ( ) ;
118120
119121export function validateTestAssignments (
You can’t perform that action at this time.
0 commit comments