File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
spark-operator-api/src/test/java/org/apache/spark/k8s/operator/spec
spark-submission-worker/src/test/java/org/apache/spark/k8s/operator Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ void testSpecWithDriverServiceIngressList() throws IOException {
5858 InputStream inputStream =
5959 getClass ()
6060 .getClassLoader ()
61- .getResourceAsStream ("spark-job-with-driver-service" + " -ingress.json" );
61+ .getResourceAsStream ("spark-job-with-driver-service-ingress.json" );
6262 ApplicationSpec spec = objectMapper .readValue (inputStream , ApplicationSpec .class );
6363 assertNotNull (spec .getDriverServiceIngressList ());
6464 assertEquals (1 , spec .getDriverServiceIngressList ().size ());
Original file line number Diff line number Diff line change @@ -52,10 +52,10 @@ void testResourceNamePrefix() {
5252 + "but different values are detected" );
5353 assertTrue (
5454 sparkAppDriverConf .configMapNameDriver ().contains (resourcePrefix ),
55- "ConfigMap name" + " should include secondary resource prefix" );
55+ "ConfigMap name should include secondary resource prefix" );
5656 assertTrue (
5757 sparkAppDriverConf .driverServiceName ().contains (resourcePrefix ),
58- "Driver service " + " name should include secondary resource prefix" );
58+ "Driver service name should include secondary resource prefix" );
5959 }
6060
6161 @ Test
You can’t perform that action at this time.
0 commit comments