1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

net.smtp: remove credentials from the test (#5808)

This commit is contained in:
Nedim 2020-07-11 21:19:36 +02:00 committed by GitHub
parent 549c4f54cd
commit 25c397f921
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,8 +4,8 @@ fn test_smtp() {
server := 'smtp.mailtrap.io'
port := 2525
username := '46d1daf3ff04f'
password := '1e8ba2dbf19f4f'
username := ''
password := ''
subject := 'Hello from V'
from := 'dev@vlang.io'
to := 'dev@vlang.io'