We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 071a860 commit ea7c0d6Copy full SHA for ea7c0d6
UTILS/dfextensions/AliasDataFrameTest.py
@@ -48,9 +48,8 @@ def test_log_rate_with_constant(self):
48
49
def test_circular_dependency_raises_error(self):
50
self.adf.add_alias("a", "b * 2")
51
- self.adf.add_alias("b", "a + 1")
52
with self.assertRaises(ValueError):
53
- self.adf.materialize_all()
+ self.adf.add_alias("b", "a + 1")
54
55
def test_undefined_symbol_raises_error(self):
56
self.adf.add_alias("z", "x + non_existent_variable")
0 commit comments