Parcourir la source

break test to verify CI integration

speter il y a 13 ans
Parent
commit
fa733ea3cb
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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() {