Skip to content

Commit ab58b0c

Browse files
committed
Fix build
1 parent a04ac10 commit ab58b0c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fj-core-jvfs/src/test/java/org/fugerit/java/core/jvfs/db/daogen/junit4test/model/DbJvfsFileJunit4ModelTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ public void printAll( ModelDbJvfsFile current ) {
3939
}
4040

4141
public ModelDbJvfsFile newInstance() {
42-
WrapperDbJvfsFile current = new WrapperDbJvfsFile( new HelperDbJvfsFile() );
42+
ModelDbJvfsFile model = new HelperDbJvfsFile();
43+
WrapperDbJvfsFile current = new WrapperDbJvfsFile( model );
4344
Assert.assertTrue( current.isEmpty() );
4445
current.setFileName("1");
4546
Assert.assertFalse( current.isEmpty() );

0 commit comments

Comments
 (0)