Commit 55d4c0d389425b4c151aec29144dd8a618863c6e
1 parent
7d56b48d
Fix tests
Showing
1 changed file
with
1 additions
and
3 deletions
src/test/java/pl/waw/ipipan/zil/core/md/detection/zero/TrainerTest.java
... | ... | @@ -15,9 +15,7 @@ public class TrainerTest { |
15 | 15 | public final void test() throws IOException { |
16 | 16 | String[] args = { |
17 | 17 | TrainerTest.class.getResource("/example_train_tei/").getFile(), |
18 | - new File(results.newFolder(), "model.bin").getAbsolutePath(), | |
19 | - TrainerTest.class.getResource("/example_model/quasi_verbs.txt") | |
20 | - .getFile() }; | |
18 | + new File(results.newFolder(), "model.bin").getAbsolutePath()}; | |
21 | 19 | Trainer.main(args); |
22 | 20 | } |
23 | 21 | } |
... | ... |