Index: src/router/proftpd/tests/t/lib/ProFTPD/Tests/Commands/CDUP.pm
===================================================================
--- src/router/proftpd/tests/t/lib/ProFTPD/Tests/Commands/CDUP.pm	(revision 14672)
+++ src/router/proftpd/tests/t/lib/ProFTPD/Tests/Commands/CDUP.pm	(revision 17876)
@@ -2,8 +2,7 @@
 
 use lib qw(t/lib);
-use base qw(Test::Unit::TestCase ProFTPD::TestSuite::Child);
+use base qw(ProFTPD::TestSuite::Child);
 use strict;
 
-use File::Path qw(mkpath rmtree);
 use File::Spec;
 use IO::Handle;
@@ -36,27 +35,4 @@
   return testsuite_get_runnable_tests($TESTS);
 }
-
-sub set_up {
-  my $self = shift;
-  $self->{tmpdir} = testsuite_get_tmp_dir();
-
-  # Create temporary scratch dir
-  eval { mkpath($self->{tmpdir}) };
-  if ($@) {
-    my $abs_path = File::Spec->rel2abs($self->{tmpdir});
-    die("Can't create dir $abs_path: $@");
-  }
-}
-
-sub tear_down {
-  my $self = shift;
-
-  # Remove temporary scratch dir
-  if ($self->{tmpdir}) {
-    eval { rmtree($self->{tmpdir}) };
-  }
-
-  undef $self;
-};
 
 sub cdup_ok {
@@ -141,5 +117,4 @@
 
       $expected = "CDUP command successful";
-      chomp($resp_msg);
       $self->assert($expected eq $resp_msg,
         test_msg("Expected '$expected', got '$resp_msg'"));
@@ -256,5 +231,4 @@
 
       $expected = "XCUP command successful";
-      chomp($resp_msg);
       $self->assert($expected eq $resp_msg,
         test_msg("Expected '$expected', got '$resp_msg'"));
