Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…-ballerina-http into dev

# Conflicts:
#	gradle.properties
  • Loading branch information
ldclakmal committed Aug 17, 2021
2 parents 2f166c6 + aa4002f commit 5c50459
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 19 deletions.
6 changes: 2 additions & 4 deletions ballerina-tests/tests/http_outbound_message_type_test.bal
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,7 @@ public function testRequestAnydataNegative() returns error? {
json|error payload = outRequestClient->post("/mytest/json", x);
if payload is error {
if payload is http:InitializingOutboundRequestError {
//Change error after https://github.com/ballerina-platform/ballerina-lang/issues/32001 is fixed
test:assertEquals(payload.message(), "json conversion error: java.lang.ClassCastException");
test:assertEquals(payload.message(), "json conversion error: {ballerina/lang.value}CyclicValueReferenceError");
return;
}
}
Expand Down Expand Up @@ -523,6 +522,5 @@ public function testResponseAnydataNegative() returns error? {
http:Response resp = check outRequestClient->get("/mytest/anydataNegative");
test:assertEquals(resp.statusCode, 500, msg = "Found unexpected output");
assertHeaderValue(check resp.getHeader(CONTENT_TYPE), TEXT_PLAIN);
//Change error after https://github.com/ballerina-platform/ballerina-lang/issues/32001 is fixed
test:assertEquals(check resp.getTextPayload(), "json conversion error: java.lang.ClassCastException");
test:assertEquals(check resp.getTextPayload(), "json conversion error: {ballerina/lang.value}CyclicValueReferenceError");
}
30 changes: 15 additions & 15 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
org.gradle.caching=true
group=io.ballerina.stdlib
version=2.0.0-SNAPSHOT
ballerinaLangVersion=2.0.0-beta.3-20210816-101300-f2b0c108
ballerinaLangVersion=2.0.0-beta.3-20210816-211400-55527a5e
ballerinaTomlParserVersion=1.2.2
commonsLang3Version=3.8.1
nettyVersion=4.1.65.Final
Expand All @@ -20,18 +20,18 @@ ballerinaGradlePluginVersion=0.10.0
mockitoVersion=3.7.7
gsonVersion=2.7

stdlibIoVersion=1.0.0-20210816-143500-5a9a98e
stdlibRegexVersion=1.0.0-20210816-124100-e640878
stdlibOsVersion=1.0.0-20210816-150400-7f1fb3d
stdlibTimeVersion=2.0.0-20210816-145000-cd50a54
stdlibUrlVersion=2.0.0-20210816-124200-b84ece3
stdlibTaskVersion=2.0.0-20210816-150000-045b024
stdlibFileVersion=1.0.0-20210816-151300-066a0fb
stdlibCryptoVersion=2.0.0-20210816-150300-a5db227
stdlibLogVersion=2.0.0-20210816-145700-cc665c8
stdlibMimeVersion=2.0.0-20210816-151300-4328faf
stdlibCacheVersion=3.0.0-20210816-151300-4bb5812
stdlibAuthVersion=2.0.0-20210816-152100-c3cf8c7
stdlibJwtVersion=2.0.0-20210816-152100-2d287f8
stdlibIoVersion=1.0.0-20210817-122300-7466954
stdlibRegexVersion=1.0.0-20210817-122300-35ec7cd
stdlibOsVersion=1.0.0-20210817-122800-513d3f1
stdlibTimeVersion=2.0.0-20210817-122300-15f4e66
stdlibUrlVersion=2.0.0-20210817-122300-a9ec3a9
stdlibTaskVersion=2.0.0-20210817-123200-280859f
stdlibFileVersion=1.0.0-20210817-124100-6820779
stdlibCryptoVersion=2.0.0-20210817-122800-4ed6d62
stdlibLogVersion=2.0.0-20210817-122900-719669a
stdlibMimeVersion=2.0.0-20210817-124100-383d13d
stdlibCacheVersion=3.0.0-20210817-124100-cda7525
stdlibAuthVersion=2.0.0-20210817-124700-9d2bc48
stdlibJwtVersion=2.0.0-20210817-124700-6c6216d
stdlibOAuth2Version=2.0.0-20210817-153400-d6dec5e
stdlibUuidVersion=1.0.0-20210816-151300-92124cc
stdlibUuidVersion=1.0.0-20210817-124200-043a791

0 comments on commit 5c50459

Please sign in to comment.