Index: LayoutTests/media/video-test.js |
diff --git a/LayoutTests/media/video-test.js b/LayoutTests/media/video-test.js |
index e558c1db9a90094ddbfc71a27856c090e750edfb..3f73745a4ecd43c814c0be3bbaa811395bbcb695 100644 |
--- a/LayoutTests/media/video-test.js |
+++ b/LayoutTests/media/video-test.js |
@@ -225,7 +225,7 @@ function testException(testString, exceptionString) { |
} catch (ex) { |
var exception = ex; |
} |
- logResult(exception !== undefined && exception == eval(exceptionString), |
+ logResult(exception !== undefined && exception + '' === exceptionString, |
acolwell GONE FROM CHROMIUM
2014/03/29 01:40:08
Why did you need to make this change? This could p
sandersd (OOO until July 31)
2014/03/31 20:41:08
Looks like I didn't quite understand how the other
|
"TEST(" + testString + ") THROWS(" + exceptionString + ")"); |
} |