Fix test module package name for owners-autoassign integration-tests

The package name on the owners-autoassign tests was old
and pointing to the com.vmware prefix, which has been abandoned now.

The breakage passed unnoticed because:
1. the package name is just a string and therefore it would pass the compile
   phase
2. the tests were not executed in the CI job

Point 2. has been addressed with ChangeId: Ib1b4151783.

Change-Id: Ib179b3868604e878460c8cce70c47261319cf7cf
diff --git a/owners-autoassign/src/test/java/com/googlesource/gerrit/owners/common/OwnersAutoassignIT.java b/owners-autoassign/src/test/java/com/googlesource/gerrit/owners/common/OwnersAutoassignIT.java
index f6553f1..374657c 100644
--- a/owners-autoassign/src/test/java/com/googlesource/gerrit/owners/common/OwnersAutoassignIT.java
+++ b/owners-autoassign/src/test/java/com/googlesource/gerrit/owners/common/OwnersAutoassignIT.java
@@ -29,7 +29,7 @@
 
 @TestPlugin(
     name = "owners-api",
-    sysModule = "com.vmware.gerrit.owners.common.OwnersAutoassignIT$TestModule")
+    sysModule = "com.googlesource.gerrit.owners.common.OwnersAutoassignIT$TestModule")
 public class OwnersAutoassignIT extends LightweightPluginDaemonTest {
 
   public static class TestModule extends AbstractModule {
diff --git a/owners-autoassign/src/test/java/com/googlesource/gerrit/owners/common/OwnersAutoassignWithAttentionSetIT.java b/owners-autoassign/src/test/java/com/googlesource/gerrit/owners/common/OwnersAutoassignWithAttentionSetIT.java
index d4bfb19..4ffc001 100644
--- a/owners-autoassign/src/test/java/com/googlesource/gerrit/owners/common/OwnersAutoassignWithAttentionSetIT.java
+++ b/owners-autoassign/src/test/java/com/googlesource/gerrit/owners/common/OwnersAutoassignWithAttentionSetIT.java
@@ -35,7 +35,7 @@
 
 @TestPlugin(
     name = "owners-autoassign",
-    sysModule = "com.vmware.gerrit.owners.common.OwnersAutoassignWithAttentionSetIT$TestModule")
+    sysModule = "com.googlesource.gerrit.owners.common.OwnersAutoassignWithAttentionSetIT$TestModule")
 public class OwnersAutoassignWithAttentionSetIT extends LightweightPluginDaemonTest {
 
   @Override