Skip to content

Commit 1fc6e49

Browse files
authored
fix: fmt tests (#1094)
1 parent 6fc4aec commit 1fc6e49

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

doc/_stdlib_gen/stdlib-content.jsonnet

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1349,6 +1349,8 @@ local html = import 'html.libsonnet';
13491349
description: html.paragraphs([
13501350
|||
13511351
Return the min of all element in <code>arr</code>.
1352+
|||,
1353+
]),
13521354
},
13531355
{
13541356
name: 'maxArray',
@@ -1357,6 +1359,8 @@ local html = import 'html.libsonnet';
13571359
description: html.paragraphs([
13581360
|||
13591361
Return the max of all element in <code>arr</code>.
1362+
|||,
1363+
]),
13601364
},
13611365
{
13621366
name: 'contains',

test_suite/stdlib.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1565,7 +1565,7 @@ std.assertEqual(std.isEmpty(''), true) &&
15651565
std.assertEqual(std.isEmpty('non-empty string'), false) &&
15661566

15671567
std.assertEqual(std.contains([1, 2, 3], 2), true) &&
1568-
std.assertEqual(std.contains([1, 2, 3], "foo"), false) &&
1568+
std.assertEqual(std.contains([1, 2, 3], 'foo'), false) &&
15691569

15701570
std.assertEqual(std.equalsIgnoreCase('foo', 'FOO'), true) &&
15711571
std.assertEqual(std.equalsIgnoreCase('foo', 'bar'), false) &&

0 commit comments

Comments
 (0)