@@ -201,7 +201,7 @@ describe("Integration tests - Wrong SDK key", () => {
201201 it ( "Auto poll with wrong SDK Key - getValueAsync() should return default value" , async ( ) => {
202202
203203 const defaultValue = "NOT_CAT" ;
204- const client : IConfigCatClient = configcatClient . getClient ( "WRONG_SDK_KEY" , PollingMode . AutoPoll ,
204+ const client : IConfigCatClient = configcatClient . getClient ( "WRONG_SDK_KEY-56789012/1234567890123456789012 " , PollingMode . AutoPoll ,
205205 { requestTimeoutMs : 500 , maxInitWaitTimeSeconds : 1 } ) ;
206206
207207 const actual : string = await client . getValueAsync ( "stringDefaultCat" , defaultValue ) ;
@@ -213,7 +213,7 @@ describe("Integration tests - Wrong SDK key", () => {
213213 it ( "Manual poll with wrong SDK Key - getValueAsync() should return default value" , async ( ) => {
214214
215215 const defaultValue = "NOT_CAT" ;
216- const client : IConfigCatClient = configcatClient . getClient ( "WRONG_SDK_KEY" , PollingMode . ManualPoll , { requestTimeoutMs : 500 } ) ;
216+ const client : IConfigCatClient = configcatClient . getClient ( "WRONG_SDK_KEY-56789012/1234567890123456789012 " , PollingMode . ManualPoll , { requestTimeoutMs : 500 } ) ;
217217
218218 const actual : string = await client . getValueAsync ( "stringDefaultCat" , defaultValue ) ;
219219 assert . strictEqual ( actual , defaultValue ) ;
@@ -227,7 +227,7 @@ describe("Integration tests - Wrong SDK key", () => {
227227 it ( "Lazy load with wrong SDK Key - getValueAsync() should return default value" , async ( ) => {
228228
229229 const defaultValue = "NOT_CAT" ;
230- const client : IConfigCatClient = configcatClient . getClient ( "WRONG_SDK_KEY" , PollingMode . LazyLoad , { requestTimeoutMs : 500 } ) ;
230+ const client : IConfigCatClient = configcatClient . getClient ( "WRONG_SDK_KEY-56789012/1234567890123456789012 " , PollingMode . LazyLoad , { requestTimeoutMs : 500 } ) ;
231231
232232 const actual : string = await client . getValueAsync ( "stringDefaultCat" , defaultValue ) ;
233233 assert . strictEqual ( actual , defaultValue ) ;
@@ -237,7 +237,7 @@ describe("Integration tests - Wrong SDK key", () => {
237237
238238 it ( "getAllKeysAsync() should not crash with wrong SDK Key" , async ( ) => {
239239
240- const client : IConfigCatClient = configcatClient . getClient ( "WRONG_SDK_KEY" , PollingMode . ManualPoll , { requestTimeoutMs : 500 } ) ;
240+ const client : IConfigCatClient = configcatClient . getClient ( "WRONG_SDK_KEY-56789012/1234567890123456789012 " , PollingMode . ManualPoll , { requestTimeoutMs : 500 } ) ;
241241
242242 const keys : string [ ] = await client . getAllKeysAsync ( ) ;
243243 assert . equal ( keys . length , 0 ) ;
0 commit comments