Selaa lähdekoodia

break test to verify CI integration

speter 13 vuotta sitten
vanhempi
commit
fa733ea3cb
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      dec/example_test.go

+ 1 - 1
dec/example_test.go

@@ -11,7 +11,7 @@ func ExampleDec_SetString() {
 	d := new(dec.Dec)
 	d.SetString("012345.67890") // decimal; leading 0 ignored; trailing 0 kept
 	fmt.Println(d)
-	// Output: 12345.67890
+	// Output: 12345.67890 break test
 }
 
 func ExampleDec_Scan() {