Skip to content

Commit a6bf4d8

Browse files
committed
chore: Address new whitespace linter
1 parent 4cccc06 commit a6bf4d8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

controllers/suite_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ func createSharedTestCRs() {
122122
GinkgoHelper()
123123

124124
By("Creating GrafanaFolder for testing")
125+
125126
folderCR := &v1beta1.GrafanaFolder{
126127
ObjectMeta: metav1.ObjectMeta{
127128
Namespace: "default",
@@ -134,6 +135,7 @@ func createSharedTestCRs() {
134135
Expect(k8sClient.Create(testCtx, folderCR)).ToNot(HaveOccurred())
135136

136137
By("Creating Grafana CRs. One Fake and one External")
138+
137139
intP := 1
138140
dummy := &v1beta1.Grafana{
139141
ObjectMeta: metav1.ObjectMeta{
@@ -177,6 +179,7 @@ func createSharedTestCRs() {
177179
Client: &v1beta1.GrafanaClient{TimeoutSeconds: &intP},
178180
},
179181
}
182+
180183
Expect(k8sClient.Create(testCtx, dummy)).Should(Succeed())
181184
Expect(k8sClient.Create(testCtx, external)).Should(Succeed())
182185

@@ -189,6 +192,7 @@ func createSharedTestCRs() {
189192
Expect(k8sClient.Status().Update(testCtx, dummy)).ToNot(HaveOccurred())
190193

191194
By("Reconciling External Grafana")
195+
192196
r := GrafanaReconciler{
193197
Client: k8sClient,
194198
Scheme: k8sClient.Scheme(),
@@ -199,6 +203,7 @@ func createSharedTestCRs() {
199203
Expect(err).ToNot(HaveOccurred())
200204

201205
By("Get External Grafana")
206+
202207
externalGrafanaCr = &v1beta1.Grafana{}
203208
Expect(k8sClient.Get(testCtx, types.NamespacedName{
204209
Namespace: external.Namespace,

0 commit comments

Comments
 (0)