Skip to content

Commit

Permalink
feat(samples): updated feature-samples.test.js (googleapis#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
suryaguthikonda committed Jul 28, 2022
1 parent 8049337 commit 3310d19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/test/feature-samples.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ describe('AI platform feature api samples', async function () {
const stdout = execSync(
`node ./list-features-stream-sample.js ${project} ${featurestoreId} ${entityTypeId} ${location} ${apiEndpoint}`
);
assert.match(stdout, /Stream object listFeaturesStream is closed/);
assert.match(stdout, /List features stream response/);
});
it('should search features', async () => {
const stdout = execSync(
Expand All @@ -167,7 +167,7 @@ describe('AI platform feature api samples', async function () {
const stdout = execSync(
`node ./search-features-stream-sample.js ${project} "${query}" ${location} ${apiEndpoint}`
);
assert.match(stdout, /Stream object searchFeaturesStream is closed/);
assert.match(stdout, /Search features stream response/);
});
it('should update the feature', async () => {
const stdout = execSync(
Expand Down

0 comments on commit 3310d19

Please sign in to comment.