Remove now-unused instanceId parameter from newAwsCloud

This commit is contained in:
Justin Santa Barbara
2015-04-08 06:35:09 -07:00
parent 4e176771b6
commit 5a887e83e7
2 changed files with 3 additions and 4 deletions

View File

@@ -143,8 +143,7 @@ func TestNewAWSCloud(t *testing.T) {
for _, test := range tests {
t.Logf("Running test case %s", test.name)
selfInstanceId := "self-instance"
c, err := newAWSCloud(test.reader, test.authFunc, selfInstanceId, test.metadata)
c, err := newAWSCloud(test.reader, test.authFunc, test.metadata)
if test.expectError {
if err == nil {
t.Errorf("Should error for case %s", test.name)