From 28ceb84a5647bb893400aa0c1decabf6efb7002d Mon Sep 17 00:00:00 2001 From: "kestes%tradinglinx.com" Date: Thu, 15 Feb 2001 23:53:33 +0000 Subject: [PATCH] some variables were not being interpolated because they were in single quotes. This could not have worked. --- webtools/tinderbox2/src/test/genbugs.tst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/webtools/tinderbox2/src/test/genbugs.tst b/webtools/tinderbox2/src/test/genbugs.tst index e370719705eb..c9a76f631f19 100644 --- a/webtools/tinderbox2/src/test/genbugs.tst +++ b/webtools/tinderbox2/src/test/genbugs.tst @@ -5,9 +5,9 @@ # current time. -# $Revision: 1.5 $ -# $Date: 2001/01/04 00:19:53 $ -# $Author: kestes%staff.mail.com $ +# $Revision: 1.6 $ +# $Date: 2001/02/15 23:53:33 $ +# $Author: kestes%tradinglinx.com $ # $Source: /home/hwine/cvs_conversion/cvsroot/mozilla/webtools/tinderbox2/src/test/genbugs.tst,v $ # $Name: $ # @@ -147,18 +147,18 @@ foreach $tree (@TREES) { my (%data) = ( 'ReportedBy' => "kestes\@staff.mail.com", 'Bug#' => $bug_id, - 'Product' => "$tree", + 'Product' => $tree, 'Priority' => "low", - 'Status' => '$status', + 'Status' => $status, 'Platform' => "All", 'Version' => "1.0", - 'Summary' => '$summary', + 'Summary' => $summary, 'Component' => "rhcn", 'Severity' => "low", 'QAContact' => "matty\@box.net.au", 'tinderbox_timenow' => $timenow, - 'tinderbox_status' => '$status', + 'tinderbox_status' => $status, 'tinderbox_bug_id' => $bug_id, 'tinderbox_bug_url' => "http://bugzilla.mozilla.org/show_bug.cgi?id=$bug_id", 'tinderbox_tree' => "$tree",