You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I am trying to implement testing url strings I may have something like this:
'@Test modifyIP should modify ip from 101 to alternative if 101 exists
'@Params["http://101.rooibos.com", "http://104.rooibos.com", "104"]
function cdnSwitcher__modifyIP_shouldModifyFirstThreeDigitsCorrectlyIf101Exists(startUrl as String, endUrl as String, streamSourcesPrefix as String) as Void
m.cdnInfo.streamSourcesPrefix = streamSourcesPrefix
SUT = modifyIP(startUrl, false, m.cdnInfo)
m.assertEqual(SUT, endUrl)
end function
Currently this fails and we need to remove the :// from the url strings to test. There may also be other characters but this is the only one I've come across so far.
The text was updated successfully, but these errors were encountered:
If I am trying to implement testing url strings I may have something like this:
Currently this fails and we need to remove the :// from the url strings to test. There may also be other characters but this is the only one I've come across so far.
The text was updated successfully, but these errors were encountered: