Skip to content

Commit

Permalink
Fixed actions_users/case_38_feedback_button (#4885)
Browse files Browse the repository at this point in the history
* Fixed incorrect links

* Updated header
  • Loading branch information
klakhov committed Aug 31, 2022
1 parent 3db9c2d commit 738792c
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Copyright (C) 2020-2022 Intel Corporation
// Copyright (C) 2022 CVAT.ai Corporation
//
// SPDX-License-Identifier: MIT

Expand All @@ -23,8 +24,8 @@ context('Check feedback button.', () => {
.within(() => {
cy.get('a').then(($a) => {
expect($a.length).be.equal(3);
expect($a[0].href).be.eq('https://github.com/cvat-ai/cvat');
expect($a[1].href).be.eq('https://gitter.im/opencv-cvat/public');
expect($a[0].href).be.eq('https://github.com/opencv/cvat');
expect($a[1].href).be.eq('https://discord.gg/fNR3eXfk6C');
expect($a[2].href).be.eq($a[1].href);
});
const socialNetworkList = [
Expand Down

0 comments on commit 738792c

Please sign in to comment.