Skip to content

Commit

Permalink
remove: remove debug print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
namwoam committed Jun 24, 2024
1 parent 4194bf0 commit f094c60
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions base/formats_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package base
import (
"bufio"
"encoding/base64"
"fmt"
"io"
"os"
"testing"
Expand All @@ -25,7 +24,6 @@ func TestUtil_GetFileExtension(t *testing.T) {

fileBase64 := base64.StdEncoding.EncodeToString(content)
fileBase64 = "data:image/png;base64," + fileBase64
fmt.Println(fileBase64)
gotFileExtension := GetBase64FileExtensionSlow(fileBase64)
c.Check(gotFileExtension, qt.Equals, wantFileExtension)
gotFileExtension = GetBase64FileExtensionFast(fileBase64)
Expand Down

0 comments on commit f094c60

Please sign in to comment.