We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fb452f commit 6469c15Copy full SHA for 6469c15
internal/integrationtest/lib/lib_test.go
@@ -1317,8 +1317,8 @@ func TestUpgradeDoesNotTryToUpgradeBundledCoreLibraries(t *testing.T) {
1317
require.NoError(t, err)
1318
requirejson.Len(t, stdout, 2)
1319
// Verify both libraries have the same name
1320
- requirejson.Query(t, stdout, ".[0] | .library | .name", "\"USBHost\"")
1321
- requirejson.Query(t, stdout, ".[1] | .library | .name", "\"USBHost\"")
+ requirejson.Query(t, stdout, ".[0] | .library | .name", `"USBHost"`)
+ requirejson.Query(t, stdout, ".[1] | .library | .name", `"USBHost"`)
1322
1323
stdout, _, err = cli.Run("lib", "upgrade")
1324
0 commit comments