Merge "Correct generic argument in test."
diff --git a/ndk/test/test_report.py b/ndk/test/test_report.py
index 6fc6d9a..c619fe4 100644
--- a/ndk/test/test_report.py
+++ b/ndk/test/test_report.py
@@ -14,7 +14,6 @@
 # limitations under the License.
 #
 """Tests for ndk.test.report."""
-from typing import Any
 import unittest
 
 import ndk.run_tests
@@ -28,7 +27,7 @@
 
 class ReportTest(unittest.TestCase):
     def test_remove_all_failing_flaky(self) -> None:
-        report = ndk.test.report.Report[Any]()
+        report = ndk.test.report.Report[None]()
         # Success. Not filtered.
         report.add_result("build", ndk.test.result.Success(MockTest()))