@@ -27,7 +27,7 @@ import Testing
2727struct RuntimeConfTests {
2828 @Test
2929 func get( ) async throws {
30- let client = SparkConnectClient ( remote: " sc://localhost " , user: " test " )
30+ let client = SparkConnectClient ( remote: " sc://spark " , user: " test " )
3131 _ = try await client. connect ( UUID ( ) . uuidString)
3232 let conf = RuntimeConf ( client)
3333
@@ -42,7 +42,7 @@ struct RuntimeConfTests {
4242
4343 @Test
4444 func set( ) async throws {
45- let client = SparkConnectClient ( remote: " sc://localhost " , user: " test " )
45+ let client = SparkConnectClient ( remote: " sc://spark " , user: " test " )
4646 _ = try await client. connect ( UUID ( ) . uuidString)
4747 let conf = RuntimeConf ( client)
4848 try await conf. set ( " spark.test.key1 " , " value1 " )
@@ -52,7 +52,7 @@ struct RuntimeConfTests {
5252
5353 @Test
5454 func reset( ) async throws {
55- let client = SparkConnectClient ( remote: " sc://localhost " , user: " test " )
55+ let client = SparkConnectClient ( remote: " sc://spark " , user: " test " )
5656 _ = try await client. connect ( UUID ( ) . uuidString)
5757 let conf = RuntimeConf ( client)
5858
@@ -73,7 +73,7 @@ struct RuntimeConfTests {
7373
7474 @Test
7575 func getAll( ) async throws {
76- let client = SparkConnectClient ( remote: " sc://localhost " , user: " test " )
76+ let client = SparkConnectClient ( remote: " sc://spark " , user: " test " )
7777 _ = try await client. connect ( UUID ( ) . uuidString)
7878 let conf = RuntimeConf ( client)
7979 let map = try await conf. getAll ( )
0 commit comments