]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/xml/tests/test.factor
Switch to https urls
[factor.git] / basis / xml / tests / test.factor
index ac56c609c2cc03c2c629fe2f17e3c51c32e3a70c..89bd963a552f2fd2a676d1b17cb6ea88ed8a2706 100644 (file)
@@ -1,5 +1,5 @@
 ! Copyright (C) 2005, 2009 Daniel Ehrenberg
-! See http://factorcode.org/license.txt for BSD license.
+! See https://factorcode.org/license.txt for BSD license.
 IN: xml.tests
 USING: kernel xml tools.test io namespaces make sequences
 xml.errors xml.entities.html parser strings xml.data io.files
@@ -21,9 +21,9 @@ SYMBOL: xml-file
 { "1.0" } [ xml-file get prolog>> version>> ] unit-test
 { f } [ xml-file get prolog>> standalone>> ] unit-test
 { "a" } [ xml-file get space>> ] unit-test
-{ "http://www.hello.com" } [ xml-file get url>> ] unit-test
+{ "https://www.hello.com" } [ xml-file get url>> ] unit-test
 { "that" } [
-    xml-file get T{ name f "" "this" "http://d.de" } attr
+    xml-file get T{ name f "" "this" "https://d.de" } attr
 ] unit-test
 { t } [ xml-file get children>> second contained-tag? ] unit-test
 [ "<a></b>" string>xml ] [ xml-error? ] must-fail-with