Skip to content

Commit

Permalink
Fix import paths for integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
basselworkforce committed Oct 7, 2024
1 parent 0efe7b8 commit 732c799
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ option optimize_for = CODE_SIZE;
package org.acme.proto.extended;

// Import the base proto file
import "base.proto";
import "protobuf/base.proto";

// A message representing detailed user information
message DetailedUser {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ option java_outer_classname = "BASEProtos";
option optimize_for = CODE_SIZE;

// Import the extra proto file
import "role.proto";
import "protobuf/role.proto";

package org.acme.protos.base;

Expand Down

0 comments on commit 732c799

Please sign in to comment.