From 3c252651e1ee28d015dbe1648dfdf0140232b733 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Thu, 7 Nov 2019 17:09:22 +0900 Subject: [PATCH] Fixed test failure related Net::Protocol --- lib/net/pop/version.rb | 3 ++- lib/net/smtp/version.rb | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/net/pop/version.rb b/lib/net/pop/version.rb index 4857d4de62..ef5c295cc3 100644 --- a/lib/net/pop/version.rb +++ b/lib/net/pop/version.rb @@ -1,5 +1,6 @@ module Net - class POP3 + class Protocol; end + class POP3 < Protocol VERSION = "0.1.0" end end diff --git a/lib/net/smtp/version.rb b/lib/net/smtp/version.rb index e134ec00e3..7f5aaaa6db 100644 --- a/lib/net/smtp/version.rb +++ b/lib/net/smtp/version.rb @@ -1,5 +1,6 @@ module Net - class SMTP + class Protocol; end + class SMTP < Protocol VERSION = "0.1.0" end end