From 6665e9f1441b903abd74583098e8f649a820b1e5 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Tue, 4 Jan 2011 18:32:06 -0800 Subject: [PATCH] Escape the assetId everytime - is encountered, not just the first. --- t/Asset/Wobject/Matrix.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/Asset/Wobject/Matrix.t b/t/Asset/Wobject/Matrix.t index 9db5940cc..9d1639da1 100644 --- a/t/Asset/Wobject/Matrix.t +++ b/t/Asset/Wobject/Matrix.t @@ -132,7 +132,7 @@ is($matrixListing->get('views'),'1','Views were incremented'); my $expectedAssetId = $matrixListing->getId; my $safeAssetId = $expectedAssetId; -$safeAssetId =~ s/-/_____/; +$safeAssetId =~ s/-/_____/g; my $listings = $matrix->getListings;