From 7ea344e45440a2172c15c1b6325e6d947097f79c Mon Sep 17 00:00:00 2001 From: Denis Demchenko Date: Thu, 17 Aug 2017 23:55:47 +0300 Subject: [PATCH] Fix the helper to convert tests to yml --- helpers/convert-old-json-to-yaml.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helpers/convert-old-json-to-yaml.js b/helpers/convert-old-json-to-yaml.js index 7e4259f..a879916 100644 --- a/helpers/convert-old-json-to-yaml.js +++ b/helpers/convert-old-json-to-yaml.js @@ -1,7 +1,7 @@ const fs = require('fs'); -const UAList = require('./src/useragents').useragents; +const UAList = require('../src/useragents').useragents; const json2yaml = require('json2yaml'); -const Parser = require('./lib/parser').default; +const Parser = require('../lib/parser').default; const newBrowserList = {};