Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 81b9d3bd authored by Greg Kaiser's avatar Greg Kaiser Committed by Android (Google) Code Review
Browse files

Merge "ravenwood: Update go link" into main

parents 7e149ec5 72186eaf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@ import java.util.concurrent.Future;
// NOTE: This @DisabledOnRavenwood annotation is inherited to all subclasses (unless overridden
// via a more-specific @EnabledOnRavenwood annotation); this means that by default all
// subclasses will be "ignored" when executed on the Ravenwood testing environment; more
// background on Ravenwood is available at go/ravenwood-docs
// background on Ravenwood is available at go/ravenwood
@DisabledOnRavenwood
public abstract class SysuiTestCase {
    /**
+1 −1
Original line number Diff line number Diff line
@@ -113,7 +113,7 @@ public class RavenwoodSystemServer {
                throw new RuntimeException("The requested service " + serviceClass
                        + " is not yet supported under the Ravenwood deviceless testing "
                        + "environment; consider requesting support from the API owner or "
                        + "consider using Mockito; more details at go/ravenwood-docs");
                        + "consider using Mockito; more details at go/ravenwood");
            }

            // Start service and then depth-first traversal of any dependencies
+1 −1
Original line number Diff line number Diff line
@@ -19,6 +19,6 @@ public class RavenwoodUnsupportedApiException extends UnsupportedOperationExcept
    public RavenwoodUnsupportedApiException() {
        super("This method is not yet supported under the Ravenwood deviceless testing "
                + "environment; consider requesting support from the API owner or "
                + "consider using Mockito; more details at go/ravenwood-docs");
                + "consider using Mockito; more details at go/ravenwood");
    }
}