diff -ru perl_20760/lib/ExtUtils/t/Manifest.t perl/lib/ExtUtils/t/Manifest.t
--- perl_20760/lib/ExtUtils/t/Manifest.t	2003-08-18 12:48:39.000000000 -0400
+++ perl/lib/ExtUtils/t/Manifest.t	2003-08-19 10:09:48.000000000 -0400
@@ -191,12 +191,12 @@
 is( $files->{foobar}, '',    '          preserved old entries' );
 
 add_file('MANIFEST'   => 'Makefile.PL');
-maniadd({ 'META.yml'  => 'Module meta-data (added by MakeMaker)' });
+maniadd({ foo  => 'bar' });
 $files = maniread;
 # VMS downcases the MANIFEST.  We normalize it here to match.
 %$files = map { (lc $_ => $files->{$_}) } keys %$files;
 my %expect = ( 'makefile.pl' => '',
-               'meta.yml'    => 'Module meta-data (added by MakeMaker)' 
+               'foo'    => 'bar' 
              );
 is_deeply( $files, \%expect, 'maniadd() vs MANIFEST without trailing newline');
 
@@ -205,7 +205,7 @@
     skip "Can't make MANIFEST read-only", 2 if -w 'MANIFEST';
 
     eval {
-        maniadd({ 'META.yml' => 'hock' });
+        maniadd({ 'foo' => 'bar' });
     };
     is( $@, '',  "maniadd() won't open MANIFEST if it doesn't need to" );
 
