From 25c397f921e331360760ec252085261bb3d9b78e Mon Sep 17 00:00:00 2001 From: Nedim <24845593+nedimf@users.noreply.github.com> Date: Sat, 11 Jul 2020 21:19:36 +0200 Subject: [PATCH] net.smtp: remove credentials from the test (#5808) --- vlib/net/smtp/smtp_test.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/net/smtp/smtp_test.v b/vlib/net/smtp/smtp_test.v index 87824d5b63..0c199dc7fc 100644 --- a/vlib/net/smtp/smtp_test.v +++ b/vlib/net/smtp/smtp_test.v @@ -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'