Skip to content

Commit 7efc9ab

Browse files
committed
✅🚧 Mark 2 FetchData tests as pending for JRuby
1 parent 4820131 commit 7efc9ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/net/imap/test_fetch_data.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ def fetch_data_class
2525
end
2626

2727
test "#seqno does not exist" do
28-
data = Net::IMAP::UIDFetchData.new(22222)
28+
data = pend_if_jruby { Net::IMAP::UIDFetchData.new(22222) } or next
2929
assert_raise NoMethodError do
3030
data.seqno
3131
end
3232
end
3333

3434
test "#uid replaces #seqno" do
35-
data = Net::IMAP::UIDFetchData.new(22222)
35+
data = pend_if_jruby { Net::IMAP::UIDFetchData.new(22222) } or next
3636
assert_equal 22222, data.uid
3737
end
3838

0 commit comments

Comments
 (0)