patch 8.1.0146: when $LANG is set the compiler test may fail

Problem:    When $LANG is set the compiler test may fail.
Solution:   Unset $LANG.
diff --git a/src/testdir/test_compiler.vim b/src/testdir/test_compiler.vim
index 29d02b2..46c14d8 100644
--- a/src/testdir/test_compiler.vim
+++ b/src/testdir/test_compiler.vim
@@ -5,6 +5,11 @@
     return
   endif
 
+  " $LANG changes the output of Perl.
+  if $LANG != ''
+    unlet $LANG
+  endif
+
   e Xfoo.pl
   compiler perl
   call assert_equal('perl', b:current_compiler)