Skip to content

Commit

Permalink
fix camelCase issue
Browse files Browse the repository at this point in the history
  • Loading branch information
radeusgd committed Dec 14, 2023
1 parent bbc98da commit 5904b3c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions test/AWS_Tests/src/Enso_Cloud_Spec.enso
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ spec =
"id": "organization-27xJM00p8jWoL2qByTo6tQfciWC",
"name": "Parsed user",
"email": "[email protected]",
"is_enabled": true,
"root_directory_id": "directory-27xJM00p8jWoL2qByTo6tQfciWC"
"isEnabled": true,
"rootDirectoryId": "directory-27xJM00p8jWoL2qByTo6tQfciWC"
}
parsed_user = Enso_User.from json
parsed_user.id.should_equal "organization-27xJM00p8jWoL2qByTo6tQfciWC"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ private void sendUserList(CloudExchange exchange) throws IOException {
"id": "organization-27xJM00p8jWoL2qByTo6tQfciWC",
"name": "My test User 1",
"email": "[email protected]",
"is_enabled": true,
"root_directory_id": "directory-27xJM00p8jWoL2qByTo6tQfciWC"
"isEnabled": true,
"rootDirectoryId": "directory-27xJM00p8jWoL2qByTo6tQfciWC"
}
""";

Expand All @@ -56,8 +56,8 @@ private void sendUserList(CloudExchange exchange) throws IOException {
"id": "organization-44AAA00A8AAAA2AAAAA6AAAAAAA",
"name": "My test User 2",
"email": "[email protected]",
"is_enabled": false,
"root_directory_id": "directory-44AAA00A8AAAA2AAAAA6AAAAAAA"
"isEnabled": false,
"rootDirectoryId": "directory-44AAA00A8AAAA2AAAAA6AAAAAAA"
}
""";
}

0 comments on commit 5904b3c

Please sign in to comment.