Skip to content

Commit 39e329d

Browse files
committed
Fix tests 2.
1 parent 5a44930 commit 39e329d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/src/test/java/hudson/model/ViewJobTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ public static final class J extends ViewJob<J, R> implements TopLevelItem {
6868
runs.load(this, new RunMap.Constructor<>() {
6969
@Override
7070
public R create(File dir) throws IOException {
71-
return null;
71+
return new R(J.this, dir);
7272
}
7373

7474
@Override
7575
public Class<R> getBuildClass() {
76-
return null;
76+
return R.class;
7777
}
7878
});
7979
}

0 commit comments

Comments
 (0)