File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/test/java/org/scijava/table/io Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ public void tearDown() {
6969
7070 @ Test
7171 public void testTableIOService () {
72- String tableFile = "fakeTableFile.csv " ;
72+ String tableFile = "test.fakeTable " ;
7373 GenericTable table = new DefaultGenericTable ();
7474 TableIOService tableIOService = context .getService (TableIOService .class );
7575 assertTrue (tableIOService .getClass ().equals (DefaultTableIOService .class ));
@@ -86,7 +86,7 @@ public void testTableIOService() {
8686
8787 @ Test
8888 public void testTableIOServiceWithOptions () {
89- String tableFile = "fakeTableFile.csv " ;
89+ String tableFile = "test.fakeTable " ;
9090 TableIOService tableIOService = context .getService (TableIOService .class );
9191 TableIOOptions options = new TableIOOptions ()
9292 .readColumnHeaders (true )
@@ -111,12 +111,12 @@ public static class FakeTableIOPlugin extends TableIOPlugin {
111111
112112 @ Override
113113 public boolean supportsOpen (String loc ) {
114- return loc .endsWith ("csv " );
114+ return loc .endsWith ("fakeTable " );
115115 }
116116
117117 @ Override
118118 public boolean supportsSave (String loc ) {
119- return loc .endsWith ("csv " );
119+ return loc .endsWith ("fakeTable " );
120120 }
121121
122122 /**
You can’t perform that action at this time.
0 commit comments