Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduard-Voiculescu committed Nov 12, 2024
1 parent d615398 commit 180b2ec
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions info/info_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package info

import (
"encoding/json"
"fmt"
"testing"

"github.com/streamingfast/substreams/manifest"
Expand All @@ -22,16 +21,14 @@ func TestBasicInfo(t *testing.T) {

r, err := json.MarshalIndent(info, "", " ")
require.NoError(t, err)

fmt.Println(string(r))
require.NotNil(t, r)
}

func TestExtendedInfo(t *testing.T) {
info, err := Extended("https://github.com/streamingfast/substreams-uniswap-v3/releases/download/v0.2.8/substreams.spkg", "graph_out", nil)
info, err := Extended("https://github.com/streamingfast/substreams-uniswap-v3/releases/download/v0.2.8/substreams.spkg", "graph_out")
require.NoError(t, err)

r, err := json.MarshalIndent(info, "", " ")
require.NoError(t, err)

fmt.Println(string(r))
require.NotNil(t, r)
}

0 comments on commit 180b2ec

Please sign in to comment.