mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-10 18:27:25 +03:00
Fixed wrong use of quotes
This commit is contained in:
parent
b1df1652bf
commit
e6efda5563
1 changed files with 4 additions and 4 deletions
|
@ -24,9 +24,9 @@ describe('<ShlinkVersions />', () => {
|
|||
const clientLink = links.at(0);
|
||||
const serverLink = links.at(1);
|
||||
|
||||
expect(clientLink.prop("project")).toEqual('shlink-web-client');
|
||||
expect(clientLink.prop("version")).toEqual(expectedClientVersion);
|
||||
expect(serverLink.prop("project")).toEqual('shlink');
|
||||
expect(serverLink.prop("version")).toEqual(expectedServerVersion);
|
||||
expect(clientLink.prop('project')).toEqual('shlink-web-client');
|
||||
expect(clientLink.prop('version')).toEqual(expectedClientVersion);
|
||||
expect(serverLink.prop('project')).toEqual('shlink');
|
||||
expect(serverLink.prop('version')).toEqual(expectedServerVersion);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue