Skip to content

Commit

Permalink
Fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
khatchad committed May 2, 2024
1 parent d40186b commit 9402bfe
Showing 1 changed file with 12 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3627,14 +3627,14 @@ public void testDecoratedMethod() throws ClassHierarchyException, CancelExceptio

@Test
public void testDecoratedMethod2() throws ClassHierarchyException, CancelException, IOException {
// NOTE: Change to 1, 1, 2 once https://github.com/wala/ML/issues/188 is fixed.
test("tf2_test_decorated_method2.py", "f", 0, 0);
// NOTE: Change to 0, 0 once https://github.com/wala/ML/issues/147 is fixed.
test("tf2_test_decorated_method2.py", "f", 1, 1, 2);
}

@Test
public void testDecoratedMethod3() throws ClassHierarchyException, CancelException, IOException {
// NOTE: Change to 1, 1, 2 once https://github.com/wala/ML/issues/190 is fixed.
test("tf2_test_decorated_method3.py", "raffi", 0, 0);
// NOTE: Change to 0, 0 once https://github.com/wala/ML/issues/147 is fixed.
test("tf2_test_decorated_method3.py", "raffi", 1, 1, 2);
}

@Test
Expand Down Expand Up @@ -3665,13 +3665,14 @@ public void testDecoratedMethod8() throws ClassHierarchyException, CancelExcepti
/** This decorator isn't defined. Thus, we shouldn't have a CG node for it. */
@Test
public void testDecoratedMethod9() throws ClassHierarchyException, CancelException, IOException {
test("tf2_test_decorated_method9.py", "f", 0, 0);
// NOTE: Change to 0, 0 once https://github.com/wala/ML/issues/147 is fixed.
test("tf2_test_decorated_method9.py", "f", 1, 1, 2);
}

@Test
public void testDecoratedMethod10() throws ClassHierarchyException, CancelException, IOException {
// NOTE: Change to 1, 1, 2 once https://github.com/wala/ML/issues/190 is fixed.
test("tf2_test_decorated_method10.py", "f", 0, 0);
// NOTE: Change to 0, 0 once https://github.com/wala/ML/issues/147 is fixed.
test("tf2_test_decorated_method10.py", "f", 1, 1, 2);
}

@Test
Expand All @@ -3681,14 +3682,14 @@ public void testDecoratedMethod11() throws ClassHierarchyException, CancelExcept

@Test
public void testDecoratedMethod12() throws ClassHierarchyException, CancelException, IOException {
// NOTE: Change to 1, 1, 2 once https://github.com/wala/ML/issues/188 is fixed.
test("tf2_test_decorated_method12.py", "f", 0, 0);
// NOTE: Change to 0, 0 once https://github.com/wala/ML/issues/147 is fixed.
test("tf2_test_decorated_method12.py", "f", 1, 1, 2);
}

@Test
public void testDecoratedMethod13() throws ClassHierarchyException, CancelException, IOException {
// NOTE: Change to 1, 1, 2 once https://github.com/wala/ML/issues/190 is fixed.
test("tf2_test_decorated_method13.py", "f", 0, 0);
// NOTE: Change to 0, 0 once https://github.com/wala/ML/issues/147 is fixed.
test("tf2_test_decorated_method13.py", "f", 1, 1, 2);
}

@Test
Expand Down

0 comments on commit 9402bfe

Please sign in to comment.