| Index: tracing/tracing/base/unittest/test_case.html
|
| diff --git a/tracing/tracing/base/unittest/test_case.html b/tracing/tracing/base/unittest/test_case.html
|
| index f092f2a94613e722384307a646c225a77c182d0a..231ebfde0f7081a997e1c8b984bd60299ce86e88 100644
|
| --- a/tracing/tracing/base/unittest/test_case.html
|
| +++ b/tracing/tracing/base/unittest/test_case.html
|
| @@ -29,7 +29,7 @@ tr.exportTo('tr.b.unittest', function() {
|
|
|
| TestCase.parseFullyQualifiedName = function(fqn) {
|
| var i = fqn.lastIndexOf('.');
|
| - if (i == -1)
|
| + if (i === -1)
|
| throw new Error('FullyQualifiedNames must have a period in them');
|
| return {
|
| suiteName: fqn.substr(0, i),
|
|
|