Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdks/go/src/hash_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "testing"
// TestRelationIdFromString verifies that relation_id_from_string produces
// the same id across all SDKs (Julia, Python, Go).
func TestRelationIdFromString(t *testing.T) {
p := NewParser([]Token{})
p := NewParser([]Token{}, "")
rid := p.relationIdFromString("my_relation")
if rid.IdLow != 0xf2fc83ec57cf8fbc {
t.Errorf("id_low: got 0x%016x, want 0xf2fc83ec57cf8fbc", rid.IdLow)
Expand Down
Loading