Skip to content

Commit 241ec49

Browse files
committed
Fixed test
1 parent 346a630 commit 241ec49

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

internal/cli/config/dump.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ func (r *rawResult) MarshalYAML() (interface{}, error) {
7272
}
7373

7474
type dumpResult struct {
75-
Config *rawResult
75+
Config *rawResult `json:"config" yaml:"config"`
7676
}
7777

7878
func (dr dumpResult) Data() interface{} {

internal/integrationtest/compile_1/compile_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ func compileWithExportBinariesConfig(t *testing.T, env *integrationtest.Environm
522522
{
523523
"config": {
524524
"sketch": {
525-
"always_export_binaries": "true"
525+
"always_export_binaries": true
526526
}
527527
}
528528
}`)

0 commit comments

Comments
 (0)