From a266b11861c152eb3c3876dd24f312f1d614a5b9 Mon Sep 17 00:00:00 2001 From: manish-giri Date: Mon, 30 Jan 2017 00:54:42 -0500 Subject: [PATCH] Update position of x point --- .../04-data-visualization/data-visualization-with-d3.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/04-data-visualization/data-visualization-with-d3.json b/challenges/04-data-visualization/data-visualization-with-d3.json index 9098a00163..63a3ce72c3 100644 --- a/challenges/04-data-visualization/data-visualization-with-d3.json +++ b/challenges/04-data-visualization/data-visualization-with-d3.json @@ -1724,7 +1724,7 @@ ], "tests": [ "assert($('text').length == 10, 'message: Your code should have 10 text elements.');", - "assert($('text').eq(0).text() == '34, 78' && $('text').eq(0).attr('x') == '39' && $('text').eq(0).attr('y') == '422', 'message: The first label should have text of \"34, 78\", an x value of 34, and a y value of 422.');", + "assert($('text').eq(0).text() == '34, 78' && $('text').eq(0).attr('x') == '39' && $('text').eq(0).attr('y') == '422', 'message: The first label should have text of \"34, 78\", an x value of 39, and a y value of 422.');", "assert($('text').eq(1).text() == '109, 280' && $('text').eq(1).attr('x') == '114' && $('text').eq(1).attr('y') == '220', 'message: The second label should have text of \"109, 280\", an x value of 114, and a y value of 220.');", "assert($('text').eq(2).text() == '310, 120' && $('text').eq(2).attr('x') == '315' && $('text').eq(2).attr('y') == '380', 'message: The third label should have text of \"310, 120\", an x value of 315, and a y value of 380.');", "assert($('text').eq(3).text() == '79, 411' && $('text').eq(3).attr('x') == '84' && $('text').eq(3).attr('y') == '89', 'message: The fourth label should have text of \"79, 411\", an x value of 84, and a y value of 89.');",