Skip to content

Commit ae527ce

Browse files
authored
Fix format after linter change (#2322)
1 parent 6a0092f commit ae527ce

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

e2e/fixtures/pods.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ func (factory *Factory) RandomPickCluster(input []*FdbCluster, count int) []*Fdb
114114

115115
// RandomPickOneCluster will pick one FdbCluster randomly from the FdbCluster slice.
116116
func (factory *Factory) RandomPickOneCluster(input []*FdbCluster) *FdbCluster {
117-
gomega.Expect(input).NotTo(gomega.BeEmpty(), "cannot pick a random FDB cluster from an empty slice")
117+
gomega.Expect(input).
118+
NotTo(gomega.BeEmpty(), "cannot pick a random FDB cluster from an empty slice")
118119
randomClusters := factory.RandomPickCluster(input, 1)
119120
if len(randomClusters) > 0 {
120121
return randomClusters[0]

0 commit comments

Comments
 (0)