~andychilton/goamz/aws-fix-for-r60

« back to all changes in this revision

Viewing changes to goamz_test.go

  • Committer: Gustavo Niemeyer
  • Date: 2011-02-01 12:45:59 UTC
  • Revision ID: gustavo@niemeyer.net-20110201124559-mkuol9axpel46fhi
Expanding names again.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
var _ = Suite(&RegionSuiteI{})
9
9
 
10
 
type RegionSuiteI struct{
 
10
type RegionSuiteI struct {
11
11
    SuiteI
12
12
}
13
13
 
45
45
        }(region)
46
46
        go func(r goamz.Region) {
47
47
            ec2 := goamz.NewEC2(s.auth, r)
48
 
            _, err := ec2.AuthorizeSecGroup(name, perms)
 
48
            _, err := ec2.AuthorizeSecurityGroup(name, perms)
49
49
            ec2errs <- err.(*goamz.EC2Error)
50
50
        }(region)
51
51
    }