Fix a grammatical error
This commit is contained in:
parent
dc5f9880af
commit
9170dcb87f
@ -20,14 +20,14 @@ SqlStringInjectionHint9=Intercept the request and try to specify a different ord
|
|||||||
SqlStringInjectionHint10=Use for example "(case when (true) then hostname else id end)" in the order by and see what happens
|
SqlStringInjectionHint10=Use for example "(case when (true) then hostname else id end)" in the order by and see what happens
|
||||||
SqlStringInjectionHint11=Use for example "(case when (true) then hostname else id end)" in the order by and see what happens
|
SqlStringInjectionHint11=Use for example "(case when (true) then hostname else id end)" in the order by and see what happens
|
||||||
|
|
||||||
sql-injection.5a.success=You have succeed: {0}
|
sql-injection.5a.success=You have succeeded: {0}
|
||||||
sql-injection.5a.no.results=No results matched. Try Again.
|
sql-injection.5a.no.results=No results matched. Try Again.
|
||||||
|
|
||||||
sql-injection.5b.success=You have succeed: {0}
|
sql-injection.5b.success=You have succeeded: {0}
|
||||||
sql-injection.5b.no.results=No results matched. Try Again.
|
sql-injection.5b.no.results=No results matched. Try Again.
|
||||||
|
|
||||||
sql-injection.6a.success=You have succeed: {0}
|
sql-injection.6a.success=You have succeeded: {0}
|
||||||
sql-injection.6a.no.results=No results matched. Try Again.
|
sql-injection.6a.no.results=No results matched. Try Again.
|
||||||
|
|
||||||
sql-injection.6b.success=You have succeed: {0}
|
sql-injection.6b.success=You have succeeded: {0}
|
||||||
sql-injection.6b.no.results=No results matched. Try Again.
|
sql-injection.6b.no.results=No results matched. Try Again.
|
||||||
|
@ -63,7 +63,7 @@ public class SqlInjectionLesson5aTest extends LessonTest {
|
|||||||
|
|
||||||
.andExpect(status().isOk())
|
.andExpect(status().isOk())
|
||||||
.andExpect(jsonPath("lessonCompleted", is(true)))
|
.andExpect(jsonPath("lessonCompleted", is(true)))
|
||||||
.andExpect(jsonPath("$.feedback", containsString("You have succeed")))
|
.andExpect(jsonPath("$.feedback", containsString("You have succeeded")))
|
||||||
.andExpect(jsonPath("$.output").doesNotExist());
|
.andExpect(jsonPath("$.output").doesNotExist());
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -77,4 +77,4 @@ public class SqlInjectionLesson5aTest extends LessonTest {
|
|||||||
.andExpect(jsonPath("$.feedback", containsString(messages.getMessage("assignment.not.solved"))))
|
.andExpect(jsonPath("$.feedback", containsString(messages.getMessage("assignment.not.solved"))))
|
||||||
.andExpect(jsonPath("$.output", is("malformed string: '1''")));
|
.andExpect(jsonPath("$.output", is("malformed string: '1''")));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user