From 9a4e3396e8695026f8ec91a7511ac5b60d52a75f Mon Sep 17 00:00:00 2001 From: Ryan Manns Date: Wed, 29 Aug 2018 09:13:35 -0400 Subject: [PATCH] use single quotes consistently --- types/libxmljs/libxmljs-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/libxmljs/libxmljs-tests.ts b/types/libxmljs/libxmljs-tests.ts index 93157c13fc..fe720cc242 100644 --- a/types/libxmljs/libxmljs-tests.ts +++ b/types/libxmljs/libxmljs-tests.ts @@ -59,6 +59,6 @@ const xmlWithNs = '' + const xmlDocWithNs = libxmljs.parseXml(xmlWithNs); // xpath queries -const gchildWithNs = xmlDocWithNs.get('//a:grandchild', {a: "http://test.com/test"})!; +const gchildWithNs = xmlDocWithNs.get('//a:grandchild', {a: 'http://test.com/test'})!; console.log(gchildWithNs.text()); // prints "grandchild content"