From ffc616163340248c91dbddc0f5ece3acdc136421 Mon Sep 17 00:00:00 2001 From: Matt Traynham Date: Fri, 24 Apr 2015 14:17:17 -0400 Subject: [PATCH] Fix tests. 'const' not available --- colorbrewer/colorbrewer-tests.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/colorbrewer/colorbrewer-tests.ts b/colorbrewer/colorbrewer-tests.ts index 1e8c835c5f..7e17551b5a 100644 --- a/colorbrewer/colorbrewer-tests.ts +++ b/colorbrewer/colorbrewer-tests.ts @@ -1,8 +1,8 @@ /// -const accent3: string[] = colorbrewer.Accent[3]; -const accent4: string[] = colorbrewer.Accent[4]; -const accent5: string[] = colorbrewer.Accent[5]; -const accent6: string[] = colorbrewer.Accent[6]; -const accent7: string[] = colorbrewer.Accent[7]; -const accent8: string[] = colorbrewer.Accent[8]; +var accent3: string[] = colorbrewer.Accent[3]; +var accent4: string[] = colorbrewer.Accent[4]; +var accent5: string[] = colorbrewer.Accent[5]; +var accent6: string[] = colorbrewer.Accent[6]; +var accent7: string[] = colorbrewer.Accent[7]; +var accent8: string[] = colorbrewer.Accent[8];