Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
IronCore864 committed Jul 24, 2024
1 parent 1ef278b commit b4ca4b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions internals/plan/plan_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1966,15 +1966,15 @@ func (s *S) TestStartStopOrderSingleLane(c *C) {
Override: "replace",
Command: `cmd`,
Requires: []string{"srv2"},
Before: []string{"srv2"},
Before: []string{"srv2"},
Startup: plan.StartupEnabled,
},
"srv2": {
Name: "srv2",
Override: "replace",
Command: `cmd`,
Requires: []string{"srv3"},
Before: []string{"srv3"},
Before: []string{"srv3"},
Startup: plan.StartupEnabled,
},
"srv3": {
Expand All @@ -1989,7 +1989,7 @@ func (s *S) TestStartStopOrderSingleLane(c *C) {
}

p := plan.Plan{Services: layer.Services}

lanes, err := p.StartOrder([]string{"srv1", "srv2", "srv3"})
c.Assert(err, IsNil)
c.Assert(len(lanes), Equals, 1)
Expand Down Expand Up @@ -2030,7 +2030,7 @@ func (s *S) TestStartStopOrderMultipleLanes(c *C) {
}

p := plan.Plan{Services: layer.Services}

lanes, err := p.StartOrder([]string{"srv1", "srv2", "srv3"})
c.Assert(err, IsNil)
c.Assert(len(lanes), Equals, 3)
Expand Down

0 comments on commit b4ca4b7

Please sign in to comment.