Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lvarin committed Aug 7, 2024
1 parent 31b66af commit 61aa043
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ public void fromTesTaskToK8sConfigMap() throws IOException {

taskMasterInputJson.extractingJsonPathNumberValue("resources.disk_gb").isEqualTo(100.0);

//taskMasterInputJson.isEqualToJson(new ClassPathResource("fromTesToK8s/taskmaster_param.json"), JSONCompareMode.NON_EXTENSIBLE);
taskMasterInputJson.isEqualToJson(new ClassPathResource("fromTesToK8s/taskmaster_param.json"), JSONCompareMode.NON_EXTENSIBLE);

}

Expand Down
5 changes: 4 additions & 1 deletion src/test/resources/fromTesToK8s/taskmaster_param.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"memory": "16106127360"
},
"limits": {
"cpu": 4
"cpu": "4"
}
},
"volumeMounts": [
Expand Down Expand Up @@ -146,6 +146,9 @@
"requests": {
"cpu": "4",
"memory": "16106127360"
},
"limits": {
"cpu": "4"
}
},
"workingDir": "/starthere",
Expand Down

0 comments on commit 61aa043

Please sign in to comment.