Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

fix: update DeIdentificationTest #976

Merged
merged 6 commits into from
Sep 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>libraries-bom</artifactId>
<version>26.1.0</version>
<version>26.1.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -50,7 +50,7 @@ If you are using Maven without BOM, add this to your dependencies:
If you are using Gradle 5.x or later, add this to your dependencies:

```Groovy
implementation platform('com.google.cloud:libraries-bom:26.1.0')
implementation platform('com.google.cloud:libraries-bom:26.1.1')

implementation 'com.google.cloud:google-cloud-dlp'
```
Expand Down
2 changes: 1 addition & 1 deletion samples/snippets/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>libraries-bom</artifactId>
<version>26.1.0</version>
<version>26.1.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ public void testDeIdentifyTableInfoTypes() throws IOException {
.addValues(
Value.newBuilder()
.setStringValue(
"[PERSON_NAME] name was a curse invented by Shakespeare.")
"[PERSON_NAME] name was a curse invented by [PERSON_NAME].")
.build())
.build())
.addRows(
Expand Down Expand Up @@ -447,7 +447,7 @@ public void testDeIdentifyTableConditionsInfoTypes() throws IOException {
.addValues(
Value.newBuilder()
.setStringValue(
"[PERSON_NAME] name was a curse invented by Shakespeare.")
"[PERSON_NAME] name was a curse invented by [PERSON_NAME].")
.build())
.build())
.addRows(
Expand Down