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:
parent
8e25658011
commit
20178758ae
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue