fixed gae test relating to expect header

This commit is contained in:
Adrian Cole 2011-02-26 21:50:36 -08:00
parent 897dc000d5
commit 71eb7ea8b7
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ public class ConvertToGaeRequestTest {
builder.append(header.getName()).append(": ").append(header.getValue()).append("\n");
}
assertEquals(builder.toString(),
"User-Agent: jclouds/1.0 urlfetch/1.3.5\nContent-Type: text/plain\nContent-Length: 5\nContent-MD5: AQIDBA==\n");
"User-Agent: jclouds/1.0 urlfetch/1.3.5\nExpect: 100-continue\nContent-Type: text/plain\nContent-Length: 5\nContent-MD5: AQIDBA==\n");
assertEquals(new String(gaeRequest.getPayload()), "hoot!");
}
}