Skip to content

Commit 3aea453

Browse files
refactor(address.secondaryAddress): use local definition (#680)
1 parent 2f61cfd commit 3aea453

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/address.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,8 +310,9 @@ export class Address {
310310
*/
311311
secondaryAddress(): string {
312312
return this.Helpers.replaceSymbolWithNumber(
313-
// TODO ST-DDT 2022-01-30: this.faker.definitions.address.secondary_address
314-
this.faker.random.arrayElement(['Apt. ###', 'Suite ###'])
313+
this.faker.random.arrayElement(
314+
this.faker.definitions.address.secondary_address
315+
)
315316
);
316317
}
317318

0 commit comments

Comments
 (0)