Fix url type test

it passed before, but wasn't testing two methods it
should be testing.

Change-Id: I5784ecfe1b5a00620832c7b995ed3cf5ed7e27dd
Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
This commit is contained in:
Lars Knoll 2013-11-15 13:44:47 +01:00 committed by The Qt Project
parent 8e25658011
commit 20178758ae
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ Item {
return mtt.invalidUrl() == mtt.invalidUrl();
}
function test_invalid_url_refequal()
function test_invalid_url_strictequal()
{
return mtt.invalidUrl() === mtt.invalidUrl();
}
@ -21,7 +21,7 @@ Item {
return mtt.validUrl() == mtt.validUrl();
}
function test_valid_url_refequal()
function test_valid_url_strictequal()
{
return mtt.validUrl() === mtt.validUrl();
}