1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fixed test failure related Net::Protocol

This commit is contained in:
Hiroshi SHIBATA 2019-11-07 17:09:22 +09:00
parent c916f9600b
commit 3c252651e1
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2
2 changed files with 4 additions and 2 deletions

View file

@ -1,5 +1,6 @@
module Net
class POP3
class Protocol; end
class POP3 < Protocol
VERSION = "0.1.0"
end
end

View file

@ -1,5 +1,6 @@
module Net
class SMTP
class Protocol; end
class SMTP < Protocol
VERSION = "0.1.0"
end
end