diff options
author | Sutou Kouhei <kou@clear-code.com> | 2021-12-24 10:55:10 +0900 |
---|---|---|
committer | Sutou Kouhei <kou@cozmixng.org> | 2021-12-24 14:35:33 +0900 |
commit | 1a1550ba5d6f2f7631cb69a76e78f9ed31ac30fb (patch) | |
tree | 96f95bdfc6820ee18f036375efa16ebeb7d734e0 | |
parent | 22ef4f6445376b992b2725124594dad1c77a185e (diff) |
[ruby/csv] test: reduce size for stability on GitHub Actions
https://github.com/ruby/csv/commit/68461aead5
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/5336
-rw-r--r-- | test/csv/parse/test_general.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/csv/parse/test_general.rb b/test/csv/parse/test_general.rb index 52b0cab000..d2b74008eb 100644 --- a/test/csv/parse/test_general.rb +++ b/test/csv/parse/test_general.rb @@ -14,7 +14,7 @@ require_relative "../helper" class TestCSVParseGeneral < Test::Unit::TestCase extend DifferentOFS - BIG_DATA = "123456789\n" * 1024 + BIG_DATA = "123456789\n" * 512 def test_mastering_regex_example ex = %Q{Ten Thousand,10000, 2710 ,,"10,000","It's ""10 Grand"", baby",10K} |