Fixed whitespace in test.

This commit is contained in:
Christian Romming
2013-08-28 23:15:20 +02:00
parent 1cafea20c6
commit 236fb5541b
@@ -10,12 +10,12 @@ public class TestDeleteCascadingOneToMany extends TestCase {
public void testDeleteCascadingOneToMany() {
Section s0 = new Section("some content");
Article a0 = new Article("art1","auth1");
a0.addSection(s0);
Ebean.save(a0);
Ebean.delete(a0);
Article a0 = new Article("art1","auth1");
a0.addSection(s0);
Ebean.save(a0);
Ebean.delete(a0);
}
}