diff options
| author | mo khan <mo.khan@gmail.com> | 2020-06-12 17:06:14 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-06-12 17:08:46 -0600 |
| commit | 5e327cc4abe45f53918f7afce937c37fa1736a76 (patch) | |
| tree | ec54bd4c8137e05c6330ca485c2eceddc202a93b /test/net/client_test.rb | |
| parent | 35fc5298fd9102cc99a63fa7671d09bfdc53b602 (diff) | |
Create default_client to simplify usage
Diffstat (limited to 'test/net/client_test.rb')
| -rw-r--r-- | test/net/client_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/net/client_test.rb b/test/net/client_test.rb index fa15c4f..9ef6b03 100644 --- a/test/net/client_test.rb +++ b/test/net/client_test.rb @@ -306,8 +306,8 @@ class ClientTest < Minitest::Test end def test_open_timeout_setting - assert_nil subject.open_timeout - @subject.open_timeout = 10 assert_equal subject.open_timeout, 10 + @subject.open_timeout = 5 + assert_equal subject.open_timeout, 5 end end |
