From 8ee64ebde5e33d7e41854ca1a63dae8c525feadc Mon Sep 17 00:00:00 2001 From: Courtney Date: Wed, 2 May 2018 16:31:44 -0400 Subject: [PATCH] fix: index number in QA challenge test (#17096) * fix: index number in QA challenge test * fix: removed json files from git --- .../quality-assurance-and-testing-with-chai.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/06-information-security-and-quality-assurance/quality-assurance-and-testing-with-chai.json b/challenges/06-information-security-and-quality-assurance/quality-assurance-and-testing-with-chai.json index c1530aebbb..0d682b4cf7 100644 --- a/challenges/06-information-security-and-quality-assurance/quality-assurance-and-testing-with-chai.json +++ b/challenges/06-information-security-and-quality-assurance/quality-assurance-and-testing-with-chai.json @@ -558,7 +558,7 @@ }, { "text": "Choose the right assertion - typeOf vs. notTypeOf", - "testString": "getUserInput => $.get(getUserInput('url') + '/_api/get-tests?type=unit&n=16').then(data => { assert.equal(data.assertions[1].method, 'notTypeOf', 'Plane.wings is a Number (not a String)'); }, xhr => { throw new Error(xhr.responseText); })" + "testString": "getUserInput => $.get(getUserInput('url') + '/_api/get-tests?type=unit&n=16').then(data => { assert.equal(data.assertions[2].method, 'notTypeOf', 'Plane.wings is a Number (not a String)'); }, xhr => { throw new Error(xhr.responseText); })" }, { "text": "Choose the right assertion - typeOf vs. notTypeOf",