about summary refs log tree commit diff
path: root/t/lib/jitterbug
diff options
context:
space:
mode:
authorJonathan "Duke" Leto <jonathan@leto.net>2011-02-10 21:54:10 -0800
committerJonathan "Duke" Leto <jonathan@leto.net>2011-02-10 21:54:10 -0800
commit741f95aa76bde5d25d427c94634dac8d02feb428 (patch)
tree150675f14a39bc93a89a775068d2f3aac777b66f /t/lib/jitterbug
parentsigh I hate it when I commit the debug code (diff)
downloadjitterbug-741f95aa76bde5d25d427c94634dac8d02feb428.tar.gz
Make jitterbug::Test use the current perl interp
Diffstat (limited to 't/lib/jitterbug')
-rw-r--r--t/lib/jitterbug/Test.pm4
1 files changed, 1 insertions, 3 deletions
diff --git a/t/lib/jitterbug/Test.pm b/t/lib/jitterbug/Test.pm
index 824aa68..36ee769 100644
--- a/t/lib/jitterbug/Test.pm
+++ b/t/lib/jitterbug/Test.pm
@@ -4,11 +4,9 @@ use warnings;
 use FindBin qw($Bin);
 
 BEGIN{
-
-   qx{perl -Ilib $Bin/../scripts/deploy_schema $Bin/data/test.yml}
+   qx{$^X -Ilib $Bin/../scripts/deploy_schema $Bin/data/test.yml}
       unless -r qq{$Bin/data/jitterbug.db};
 };
-   
 
 1;