@@ -171,7 +171,7 @@ test('Load profiles with string content', (t) => {
171171 const profile = ClientConfigProfile . load ( { configSource : dataSource ( stringContent ) } ) ;
172172 t . is ( profile . address , 'default-address' ) ;
173173 t . is ( profile . namespace , 'default-namespace' ) ;
174-
174+
175175 // Test with custom profile from string
176176 const profileCustom = ClientConfigProfile . load ( {
177177 profile : 'custom' ,
@@ -272,7 +272,7 @@ test('Load profiles without profile-level env overrides', (t) => {
272272 overrideEnvVars : env ,
273273 } ) ;
274274 t . is ( conf . profiles [ 'default' ] . address , 'default-address' ) ;
275-
275+
276276 // Test that profile-level loading with disableEnv ignores environment
277277 const profile = ClientConfigProfile . load ( {
278278 configSource : pathSource ( filepath ) ,
@@ -710,7 +710,7 @@ test('Create client from custom profile with TLS options', async (t) => {
710710 t . true ( ! ! profile . tls ?. disabled ) ;
711711
712712 const { connectionOptions, namespace } = profile . toClientConnectConfig ( ) ;
713-
713+
714714 // Verify API key is present but TLS is disabled for local testing
715715 t . is ( connectionOptions . apiKey , 'prod-api-key-12345' ) ;
716716 t . is ( connectionOptions . tls , undefined ) ; // disabled = true results in undefined
@@ -841,4 +841,4 @@ test('Create clients from multi-profile config', async (t) => {
841841 } finally {
842842 await env . teardown ( ) ;
843843 }
844- } ) ;
844+ } ) ;
0 commit comments