Skip to content

Commit

Permalink
Object id response datatype change.
Browse files Browse the repository at this point in the history
  • Loading branch information
dashrath-chauhan committed Oct 9, 2024
1 parent ff03028 commit ef6dc58
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ dependencies {
testCompileOnly 'org.projectlombok:lombok:1.18.22'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.22'

testImplementation 'org.testng:testng:7.0.0'
testImplementation 'org.testng:testng:7.7.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.5.0'
testImplementation 'org.springframework.security:spring-security-test'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;


@SpringBootTest
@ContextConfiguration(classes={
DrsServer.class,
Expand Down Expand Up @@ -64,7 +65,7 @@ public Object[][] getObjectByIdCases() {
{
"697907bf-d5bd-433e-aac2-1747f1faf366",
false,
true,
"true",
true,
status().isOk(),
"00.json"
Expand All @@ -73,7 +74,7 @@ public Object[][] getObjectByIdCases() {
{
"2506f0e1-29e4-4132-9b37-f7452dc8a89b",
false,
true,
"true",
true,
status().isOk(),
"01.json"
Expand All @@ -82,7 +83,7 @@ public Object[][] getObjectByIdCases() {
{
"456e9ee0-5b60-4f38-82b5-83ba5d338038",
false,
true,
"true",
true,
status().isOk(),
"02.json"
Expand Down Expand Up @@ -118,7 +119,7 @@ public Object[][] getObjectByIdCases() {
{
"b8cd0667-2c33-4c9f-967b-161b905932c9",
false,
true,
"true",
true,
status().isOk(),
"04.json"
Expand Down

0 comments on commit ef6dc58

Please sign in to comment.