Skip to content

Commit

Permalink
Oops\!
Browse files Browse the repository at this point in the history
git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@235 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
julianhyde committed May 12, 2009
1 parent 3dacbf5 commit 7de4b27
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions testsrc/org/olap4j/ConnectionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -1943,7 +1943,8 @@ public void testParseQueryWithNoFilter() throws Exception {
+ "from [sales]");
select = mdxValidator.validateSelect(select);
AxisNode filterAxis = select.getFilterAxis();
assertNull(filterAxis);
assertNotNull(filterAxis);
assertNull(filterAxis.getExpression());

try {
select =
Expand Down Expand Up @@ -1983,7 +1984,8 @@ public void testValidateError() throws Exception {
+ "crossjoin([Customers].[City].Members, [Gender].members) on rows\n"
+ "from [sales]");
AxisNode filterAxis = select.getFilterAxis();
assertNull(filterAxis);
assertNotNull(filterAxis);
assertNull(filterAxis.getExpression());

try {
select = mdxValidator.validateSelect(select);
Expand Down

0 comments on commit 7de4b27

Please sign in to comment.