Skip to content

Commit 8d3064b

Browse files
authored
Merge pull request #53 from cdusovic/master
Fix non running test on described on issue #51
2 parents 5ede676 + 7f7d399 commit 8d3064b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bql/semantic/semantic_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ func TestBindingListing(t *testing.T) {
129129
}
130130
}
131131

132-
func TesIsEmptyClause(t *testing.T) {
132+
func TestIsEmptyClause(t *testing.T) {
133133
testTable := []struct {
134134
in *GraphClause
135135
out bool
@@ -140,7 +140,7 @@ func TesIsEmptyClause(t *testing.T) {
140140
},
141141
{
142142
in: &GraphClause{SBinding: "?foo"},
143-
out: true,
143+
out: false,
144144
},
145145
}
146146
for _, entry := range testTable {

0 commit comments

Comments
 (0)