Skip to content

Commit

Permalink
Fixes regression after conflict resolution.
Browse files Browse the repository at this point in the history
  • Loading branch information
manadart committed Feb 15, 2018
1 parent ea8c521 commit b4e971e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions controller/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ func (s *ConfigSuite) TestConfigManagementSpaceAsConstraint(c *gc.C) {
map[string]interface{}{controller.JujuHASpace: managementSpace},
)
c.Assert(err, jc.ErrorIsNil)
c.Check(cfg.AsSpaceConstraints(nil), gc.DeepEquals, []string{managementSpace})
c.Check(*cfg.AsSpaceConstraints(nil), gc.DeepEquals, []string{managementSpace})
}

func (s *ConfigSuite) TestConfigHASpaceAsConstraint(c *gc.C) {
Expand All @@ -341,7 +341,7 @@ func (s *ConfigSuite) TestConfigHASpaceAsConstraint(c *gc.C) {
map[string]interface{}{controller.JujuHASpace: haSpace},
)
c.Assert(err, jc.ErrorIsNil)
c.Check(cfg.AsSpaceConstraints(nil), gc.DeepEquals, []string{haSpace})
c.Check(*cfg.AsSpaceConstraints(nil), gc.DeepEquals, []string{haSpace})
}

func (s *ConfigSuite) TestConfigAllSpacesAsMergedConstraints(c *gc.C) {
Expand Down

0 comments on commit b4e971e

Please sign in to comment.