We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 938838c commit 96028a2Copy full SHA for 96028a2
rpm/org.eclipse.linuxtools.rpm.core.tests/src/org/eclipse/linuxtools/rpm/core/tests/RPMProjectTest.java
@@ -134,7 +134,8 @@ public void testBuildPrepHelloWorld() throws Exception {
134
}
135
File foo = new File(FileLocator.toFileURL(url).getPath());
136
rpmProject.importSourceRPM(foo);
137
- rpmProject.buildPrep();
+ ByteArrayOutputStream bos = new ByteArrayOutputStream();
138
+ rpmProject.buildPrep(bos);
139
140
// Make sure we got everything in the build directory
141
IFolder builddir = rpmProject.getConfiguration().getBuildFolder();
0 commit comments