Skip to content

Commit a03d901

Browse files
committed
Fix format
1 parent 846405a commit a03d901

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

e2e/test_operator_ha_upgrades/operator_ha_upgrade_test.go

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,9 @@ var _ = Describe("Operator HA Upgrades", Label("e2e", "pr"), func() {
401401
// update to the connection string.
402402
if fixtures.VersionsAreProtocolCompatible(beforeVersion, targetVersion) {
403403
Eventually(func(g Gomega) {
404-
currentConnectionString := fdbCluster.GetPrimary().GetStatus().Cluster.ConnectionString
404+
currentConnectionString := fdbCluster.GetPrimary().
405+
GetStatus().
406+
Cluster.ConnectionString
405407
remoteSat := fdbCluster.GetRemoteSatellite()
406408
remoteConnectionString := remoteSat.GetCluster().Status.ConnectionString
407409

@@ -417,7 +419,8 @@ var _ = Describe("Operator HA Upgrades", Label("e2e", "pr"), func() {
417419

418420
remoteSatStatus := remoteSat.GetCluster().Status.DeepCopy()
419421
remoteSatStatus.ConnectionString = currentConnectionString
420-
fdbCluster.GetRemoteSatellite().UpdateClusterStatusWithStatus(remoteSatStatus)
422+
fdbCluster.GetRemoteSatellite().
423+
UpdateClusterStatusWithStatus(remoteSatStatus)
421424
}
422425

423426
g.Expect(remoteConnectionString).To(Equal(currentConnectionString))

0 commit comments

Comments
 (0)