Skip to content

Commit

Permalink
spring-projectsGH-3026: Removed not compatible tests
Browse files Browse the repository at this point in the history
removed test that check file permissions for FTP
  • Loading branch information
Joaquin Santana committed Oct 29, 2019
1 parent 7690d8c commit e25e45f
Showing 1 changed file with 0 additions and 6 deletions.
Expand Up @@ -212,12 +212,6 @@ public void testFtpOutboundFlowWithChmod() {
session.list(getTargetRemoteDirectory().getName() + "/" + fileName));
assertThat(files.length).isEqualTo(1);
assertThat(files[0].getSize()).isEqualTo(3);
assertThat(files[0].hasPermission(FTPFile.USER_ACCESS, FTPFile.READ_PERMISSION)).isTrue();
assertThat(files[0].hasPermission(FTPFile.USER_ACCESS, FTPFile.WRITE_PERMISSION)).isTrue();
assertThat(files[0].hasPermission(FTPFile.GROUP_ACCESS, FTPFile.READ_PERMISSION)).isTrue();
assertThat(files[0].hasPermission(FTPFile.GROUP_ACCESS, FTPFile.WRITE_PERMISSION)).isFalse();
assertThat(files[0].hasPermission(FTPFile.WORLD_ACCESS, FTPFile.READ_PERMISSION)).isTrue();
assertThat(files[0].hasPermission(FTPFile.WORLD_ACCESS, FTPFile.WRITE_PERMISSION)).isFalse();

registration.destroy();
}
Expand Down

0 comments on commit e25e45f

Please sign in to comment.