Skip to content

Commit

Permalink
fix(de): add -kanal as seperable street suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
missinglink committed Mar 19, 2020
1 parent 452c83a commit 940f568
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
str
park
park
kanal
5 changes: 5 additions & 0 deletions test/address.deu.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ const testcase = (test, common) => {
{ postcode: '10437' }, { locality: 'Berlin' }
])

assert('Am Nordkanal 11, 47877 Willich', [
{ street: 'Am Nordkanal' }, { housenumber: '11' },
{ postcode: '47877' }, { locality: 'Willich' }
])

assert('Am Bürgerpark 15-18, 13156, Berlin', [
{ street: 'Am Bürgerpark' }, { housenumber: '15-18' },
{ postcode: '13156' }, { locality: 'Berlin' }
Expand Down

0 comments on commit 940f568

Please sign in to comment.