Skip to content

Commit 0b45f5b

Browse files
minor improvement of test_issue_463
1 parent b82d096 commit 0b45f5b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tests/test_relational_operand.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,11 @@ def test_join():
129129
y = (A & 'cond_in_a=1').proj(a2='id_a')
130130
assert_equal(len(rel), len(x * y))
131131

132-
def test_issue_463(self):
133-
x = (A & B) * B
134-
x.fetch()
132+
133+
@staticmethod
134+
def test_issue_463():
135+
assert_equal(((A & B) * B).fetch().size, len(A*B))
136+
135137

136138
@staticmethod
137139
def test_project():

0 commit comments

Comments
 (0)