-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: show difference in integration test #2684
Conversation
|
|
@@ -11,6 +11,7 @@ | |||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |||
# See the License for the specific language governing permissions and | |||
# limitations under the License. | |||
import difflib |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good to see that there is a native Python lib for this!
In this PR: - Show file diff in integration tests. I manually edited a line in test branch and this is the test result: ``` Difference in google-cloud-alloydb/src/main/java/com/google/cloud/alloydb/v1/AlloyDBAdminClient.java: --- +++ @@ -774,7 +774,7 @@ /** * Constructs an instance of AlloyDBAdminClient, using the given stub for making calls. This is - * for advanced usage - prefer using create(AlloyDBAdminSettings) - manually added. + * for advanced usage - prefer using create(AlloyDBAdminSettings). */ public static final AlloyDBAdminClient create(AlloyDBAdminStub stub) { return new AlloyDBAdminClient(stub); Error: Process completed with exit code 1. ```
In this PR:
I manually edited a line in test branch and this is the test result: