Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
klizhentas authored and russjones committed Mar 28, 2017
1 parent 30e1e13 commit facfc94
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/auth/native/native_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,15 @@ func (s *NativeSuite) TestBuildPrincipals(c *C) {
"proxy",
"example.com",
teleport.Roles{teleport.RoleProxy},
[]string{"22222222-2222-2222-2222-222222222222.example.com", "proxy.example.com"},
[]string{"22222222-2222-2222-2222-222222222222.example.com", "proxy.example.com", "proxy"},
},
// 3 - deduplicate principals
{
"33333333-3333-3333-3333-333333333333",
"33333333-3333-3333-3333-333333333333",
"example.com",
teleport.Roles{teleport.RoleProxy},
[]string{"33333333-3333-3333-3333-333333333333.example.com"},
[]string{"33333333-3333-3333-3333-333333333333.example.com", "33333333-3333-3333-3333-333333333333"},
},
}

Expand All @@ -136,7 +136,6 @@ func (s *NativeSuite) TestBuildPrincipals(c *C) {
hostCertificate, ok := publicKey.(*ssh.Certificate)
c.Assert(ok, Equals, true)

c.Assert(hostCertificate.ValidPrincipals, HasLen, len(tt.outValidPrincipals))
c.Assert(hostCertificate.ValidPrincipals, DeepEquals, tt.outValidPrincipals)
}
}

0 comments on commit facfc94

Please sign in to comment.