From 1d51b06592cc334029b1eb9fade62130e5040848 Mon Sep 17 00:00:00 2001 From: Permutator Date: Mon, 19 Sep 2016 13:09:26 -0700 Subject: [PATCH] Whoops, tabs, not spaces --- .../includes-internally-used-default-export/module.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/function/includes-internally-used-default-export/module.js b/test/function/includes-internally-used-default-export/module.js index 8f3524b..ba2c4ee 100644 --- a/test/function/includes-internally-used-default-export/module.js +++ b/test/function/includes-internally-used-default-export/module.js @@ -1,7 +1,7 @@ export default function a() { - return 5; + return 5; } export function b() { - return a() + 10; + return a() + 10; }