Skip to content
Snippets Groups Projects
Commit 1e382e21 authored by Dominika Zemanovičová's avatar Dominika Zemanovičová
Browse files

Rename to small letters and fix typo

parent 547506bd
No related branches found
No related tags found
1 merge request!16Exercise
Pipeline #
...@@ -76,7 +76,7 @@ public class AnswerTest { ...@@ -76,7 +76,7 @@ public class AnswerTest {
@Test @Test
void testCreateAnswer() throws Exception { void testCreateAnswer() throws Exception {
List<AnswerDto> res = createAnswr(); List<AnswerDto> res = createAnswer();
var expected1 = new AnswerDto("True", false); var expected1 = new AnswerDto("True", false);
var expected2 = new AnswerDto("False", false); var expected2 = new AnswerDto("False", false);
...@@ -86,7 +86,7 @@ public class AnswerTest { ...@@ -86,7 +86,7 @@ public class AnswerTest {
} }
private List<AnswerDto> createAnswr() throws Exception { private List<AnswerDto> createAnswer() throws Exception {
var exerciseId = createExercise(); var exerciseId = createExercise();
var question = createQuestion(exerciseId); var question = createQuestion(exerciseId);
...@@ -124,7 +124,7 @@ public class AnswerTest { ...@@ -124,7 +124,7 @@ public class AnswerTest {
} }
@Test @Test
void TestUpdate() throws Exception { void testUpdate() throws Exception {
var exerciseId = createExercise(); var exerciseId = createExercise();
var question = createQuestion(exerciseId); var question = createQuestion(exerciseId);
......
...@@ -109,7 +109,7 @@ public class ExerciseTest { ...@@ -109,7 +109,7 @@ public class ExerciseTest {
} }
@Test @Test
void TestUpdate() { void testUpdate() {
var postExercise = new ExerciseCreateDto("idioms", "exercise on basic idioms", 2, "0"); var postExercise = new ExerciseCreateDto("idioms", "exercise on basic idioms", 2, "0");
String id = ""; String id = "";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment