correct test data, so that the test checks the make rule it was intended to verify

This commit is contained in:
Eugene Zhuravlev
2014-11-10 23:02:08 +01:00
parent 0ac49714e1
commit cbe9ffa94a
2 changed files with 5 additions and 5 deletions
@@ -1,8 +1,8 @@
public abstract class BaseAction {
public abstract void action();
public class BaseAction {
public void action() {}
public int getData() {
return 10;
return 20;
}
}
@@ -1,3 +1,3 @@
public abstract class BaseAction {
public abstract void action();
public class BaseAction {
public void action() {}
}