Update comment in test for api model with default interface methods

Change-Id: Ib9b7585c7ac57aabf2f4d5361fcba0dc6f74ca59
diff --git a/src/test/java/com/android/tools/r8/apimodel/ApiModelNoInliningOfDefaultInterfaceMethodsTest.java b/src/test/java/com/android/tools/r8/apimodel/ApiModelNoInliningOfDefaultInterfaceMethodsTest.java
index a19ecec..cd86ade 100644
--- a/src/test/java/com/android/tools/r8/apimodel/ApiModelNoInliningOfDefaultInterfaceMethodsTest.java
+++ b/src/test/java/com/android/tools/r8/apimodel/ApiModelNoInliningOfDefaultInterfaceMethodsTest.java
@@ -53,9 +53,9 @@
               assertThat(aSubject, isPresent());
               aSubject.forAllMethods(
                   method -> {
-                    // TODO(b/191013385): callApiLevel is merged into A, but not with method
-                    // implementation.
-                    // TODO(b/191013233): Check that the bridge is supposed to stay in R8.
+                    // TODO(b/191013385): noApiCall is inlined into Main, but the synthesized
+                    //  A.callApiLevel that dispatches to $CC is not. This should change after
+                    //  desugaring is moved up to the enqueuer.
                     if (method
                             .getOriginalName()
                             .equals(ApiCaller.class.getTypeName() + ".callApiLevel")