@@ -27,7 +27,7 @@ import Testing
27
27
struct RuntimeConfTests {
28
28
@Test
29
29
func get( ) async throws {
30
- let client = SparkConnectClient ( remote: " sc://localhost " , user: " test " )
30
+ let client = SparkConnectClient ( remote: " sc://spark " , user: " test " )
31
31
_ = try await client. connect ( UUID ( ) . uuidString)
32
32
let conf = RuntimeConf ( client)
33
33
@@ -42,7 +42,7 @@ struct RuntimeConfTests {
42
42
43
43
@Test
44
44
func set( ) async throws {
45
- let client = SparkConnectClient ( remote: " sc://localhost " , user: " test " )
45
+ let client = SparkConnectClient ( remote: " sc://spark " , user: " test " )
46
46
_ = try await client. connect ( UUID ( ) . uuidString)
47
47
let conf = RuntimeConf ( client)
48
48
try await conf. set ( " spark.test.key1 " , " value1 " )
@@ -52,7 +52,7 @@ struct RuntimeConfTests {
52
52
53
53
@Test
54
54
func reset( ) async throws {
55
- let client = SparkConnectClient ( remote: " sc://localhost " , user: " test " )
55
+ let client = SparkConnectClient ( remote: " sc://spark " , user: " test " )
56
56
_ = try await client. connect ( UUID ( ) . uuidString)
57
57
let conf = RuntimeConf ( client)
58
58
@@ -73,7 +73,7 @@ struct RuntimeConfTests {
73
73
74
74
@Test
75
75
func getAll( ) async throws {
76
- let client = SparkConnectClient ( remote: " sc://localhost " , user: " test " )
76
+ let client = SparkConnectClient ( remote: " sc://spark " , user: " test " )
77
77
_ = try await client. connect ( UUID ( ) . uuidString)
78
78
let conf = RuntimeConf ( client)
79
79
let map = try await conf. getAll ( )
0 commit comments