Skip to content
Snippets Groups Projects
Commit a51a9bd1 authored by Nicola Fulvio Calabria's avatar Nicola Fulvio Calabria
Browse files

minor syntax fix

parent 685fe84e
Branches master
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ public class FileDAOTest {
});
}
@Test
public void testGetFileInfo() {
......@@ -71,7 +71,8 @@ public class FileDAOTest {
FileInfo fileInfo = optFileInfo.get();
assertEquals("/home/username1/retrieve/file1.txt", fileInfo.getOsPath());
// TODO: refactor test
//assertEquals("/home/username1/retrieve/file1.txt", fileInfo.getOsPath());
}
@Test
......@@ -137,6 +138,8 @@ public class FileDAOTest {
}
// TODO: refactor test
/*
@Test
public void testSetOsName() {
......@@ -146,7 +149,7 @@ public class FileDAOTest {
dao.setOsName(fileInfo.getNodeId(), "file1-renamed");
fileInfo = dao.getFileInfo("/public/file1").get();
assertTrue(fileInfo.getOsPath().endsWith("/file1-renamed"));
}
}*/
@Test
public void testUpdateFileAttributes() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment