@@ -88,8 +88,8 @@ func TestIntegration_Init(t *testing.T) {
8888 }
8989
9090 version := readVersionFile (t , dir )
91- if version != "0.1 .0" {
92- t .Errorf ("expected version 0.1 .0, got %s" , version )
91+ if version != "0.0 .0" {
92+ t .Errorf ("expected version 0.0 .0, got %s" , version )
9393 }
9494 })
9595
@@ -109,8 +109,8 @@ func TestIntegration_Init(t *testing.T) {
109109 if err != nil {
110110 t .Fatalf ("failed to read custom version file: %v" , err )
111111 }
112- if strings .TrimSpace (string (data )) != "0.1 .0" {
113- t .Errorf ("expected version 0.1 .0, got %s" , string (data ))
112+ if strings .TrimSpace (string (data )) != "0.0 .0" {
113+ t .Errorf ("expected version 0.0 .0, got %s" , string (data ))
114114 }
115115 })
116116}
@@ -163,8 +163,8 @@ func TestIntegration_Show(t *testing.T) {
163163 }
164164
165165 // Should auto-initialize and show the version
166- if ! strings .Contains (output , "0.1 .0" ) {
167- t .Errorf ("expected output to contain '0.1 .0', got %q" , output )
166+ if ! strings .Contains (output , "0.0 .0" ) {
167+ t .Errorf ("expected output to contain '0.0 .0', got %q" , output )
168168 }
169169 })
170170}
@@ -537,8 +537,8 @@ func TestIntegration_CustomPath(t *testing.T) {
537537 if err != nil {
538538 t .Fatalf ("show failed: %v" , err )
539539 }
540- if output != "0.1 .0" {
541- t .Errorf ("expected 0.1 .0, got %s" , output )
540+ if output != "0.0 .0" {
541+ t .Errorf ("expected 0.0 .0, got %s" , output )
542542 }
543543
544544 // Bump at custom path
0 commit comments