Skip to content

Commit ffc6161

Browse files
committed
Fix tests. 'const' not available
1 parent 94df0f9 commit ffc6161

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

colorbrewer/colorbrewer-tests.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/// <reference path="./colorbrewer.d.ts" />
22

3-
const accent3: string[] = colorbrewer.Accent[3];
4-
const accent4: string[] = colorbrewer.Accent[4];
5-
const accent5: string[] = colorbrewer.Accent[5];
6-
const accent6: string[] = colorbrewer.Accent[6];
7-
const accent7: string[] = colorbrewer.Accent[7];
8-
const accent8: string[] = colorbrewer.Accent[8];
3+
var accent3: string[] = colorbrewer.Accent[3];
4+
var accent4: string[] = colorbrewer.Accent[4];
5+
var accent5: string[] = colorbrewer.Accent[5];
6+
var accent6: string[] = colorbrewer.Accent[6];
7+
var accent7: string[] = colorbrewer.Accent[7];
8+
var accent8: string[] = colorbrewer.Accent[8];

0 commit comments

Comments
 (0)