From 61b12c25a4fca780edc612fa8252e38807855a23 Mon Sep 17 00:00:00 2001 From: Kanit Wongsuphasawat Date: Mon, 7 Nov 2016 22:14:46 -0800 Subject: [PATCH] Fix missing field type in test cases --- test/compile/axis.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/compile/axis.test.ts b/test/compile/axis.test.ts index 62b8831bef..3cca5b032a 100644 --- a/test/compile/axis.test.ts +++ b/test/compile/axis.test.ts @@ -195,7 +195,7 @@ describe('Axis', function() { const orient = axis.orient(parseModel({ mark: "point", encoding: { - y: {field: 'a'} + y: {field: 'a', type: 'quantitative'} } }), 'y'); assert.deepEqual(orient, 'left');