You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by sa...@apache.org on 2022/05/03 16:32:03 UTC

[incubator-heron] branch saadurrahman/3821-Remove-Deprecated-Volumes-K8s-dev updated: [K8s] indentation fix.

This is an automated email from the ASF dual-hosted git repository.

saadurrahman pushed a commit to branch saadurrahman/3821-Remove-Deprecated-Volumes-K8s-dev
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git


The following commit(s) were added to refs/heads/saadurrahman/3821-Remove-Deprecated-Volumes-K8s-dev by this push:
     new f9006795570 [K8s] indentation fix.
f9006795570 is described below

commit f9006795570da8279998d27d424415735b56bce0
Author: Saad Ur Rahman <sa...@apache.org>
AuthorDate: Tue May 3 12:31:42 2022 -0400

    [K8s] indentation fix.
---
 .../tests/java/org/apache/heron/scheduler/kubernetes/VolumesTests.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/heron/schedulers/tests/java/org/apache/heron/scheduler/kubernetes/VolumesTests.java b/heron/schedulers/tests/java/org/apache/heron/scheduler/kubernetes/VolumesTests.java
index c457012e342..22d3088b598 100644
--- a/heron/schedulers/tests/java/org/apache/heron/scheduler/kubernetes/VolumesTests.java
+++ b/heron/schedulers/tests/java/org/apache/heron/scheduler/kubernetes/VolumesTests.java
@@ -222,7 +222,7 @@ public class VolumesTests {
 
     // Test loop.
     for (KubernetesUtils.TestTuple<Pair<String, Map<KubernetesConstants.VolumeConfigKeys, String>>,
-          V1VolumeMount> testCase : testCases) {
+             V1VolumeMount> testCase : testCases) {
       V1VolumeMount actual = Volumes.get().createMount(testCase.input.first, testCase.input.second);
       Assert.assertEquals(testCase.description, testCase.expected, actual);
     }