Skip to content

Commit

Permalink
Corrected error in Geocoder unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
sronveaux committed Sep 20, 2024
1 parent fb4e9d8 commit 66f312b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/specs/components/geocoder/Geocoder.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ describe('geocoder/Geocoder.vue', () => {
vm.geocoderController.query(queryString).then(results => {
expect(results).to.not.be.undefined;
expect(results).to.not.be.empty;
expect(results[0].address.road).to.be('Heerstraße');
expect(results[0].address.road).to.equal('Heerstraße');
done();
});
});
Expand Down

0 comments on commit 66f312b

Please sign in to comment.