INT-2493 Fix Failing Tests

After tightening the edit for no Filters on Get, two tests
failed that were incorrectly checking the filter was set.
This commit is contained in:
Gary Russell
2012-04-09 10:30:06 -04:00
parent 0b015830d3
commit 3ad32c7f63
4 changed files with 0 additions and 4 deletions

View File

@@ -35,7 +35,6 @@
auto-create-local-directory="false"
auto-startup="false"
cache-sessions="true"
filename-pattern="*"
remote-file-separator="X"
command="get"
command-options="-P"

View File

@@ -75,7 +75,6 @@ public class FtpOutboundGatewayParserTests {
assertNotNull(TestUtils.getPropertyValue(gateway, "outputChannel"));
assertEquals(new File("/tmp"), TestUtils.getPropertyValue(gateway, "localDirectory"));
assertFalse((Boolean) TestUtils.getPropertyValue(gateway, "autoCreateLocalDirectory"));
assertNotNull(TestUtils.getPropertyValue(gateway, "filter"));
assertEquals("get", TestUtils.getPropertyValue(gateway, "command"));
@SuppressWarnings("unchecked")
Set<String> options = TestUtils.getPropertyValue(gateway, "options", Set.class);

View File

@@ -35,7 +35,6 @@
auto-create-local-directory="false"
auto-startup="false"
cache-sessions="true"
filename-pattern="*"
remote-file-separator="X"
command="get"
command-options="-P"

View File

@@ -75,7 +75,6 @@ public class SftpOutboundGatewayParserTests {
assertNotNull(TestUtils.getPropertyValue(gateway, "outputChannel"));
assertEquals(new File("/tmp"), TestUtils.getPropertyValue(gateway, "localDirectory"));
assertFalse((Boolean) TestUtils.getPropertyValue(gateway, "autoCreateLocalDirectory"));
assertNotNull(TestUtils.getPropertyValue(gateway, "filter"));
assertEquals("get", TestUtils.getPropertyValue(gateway, "command"));
@SuppressWarnings("unchecked")
Set<String> options = TestUtils.getPropertyValue(gateway, "options", Set.class);