summaryrefslogtreecommitdiffstats
path: root/modules/highlight/highlight_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/highlight/highlight_test.go')
-rw-r--r--modules/highlight/highlight_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/highlight/highlight_test.go b/modules/highlight/highlight_test.go
index 29a15c0b53..3f47b6a48f 100644
--- a/modules/highlight/highlight_test.go
+++ b/modules/highlight/highlight_test.go
@@ -96,7 +96,7 @@ steps:
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
- if got := File(tt.numLines, tt.fileName, []byte(tt.code)); !reflect.DeepEqual(got, tt.want) {
+ if got := File(tt.numLines, tt.fileName, "", []byte(tt.code)); !reflect.DeepEqual(got, tt.want) {
t.Errorf("File() = %v, want %v", got, tt.want)
}
})