texlab: Fix test for case-insensitive filesystems (#48027)
- On Linux, `require 'Open3'` failed, but `require 'open3'` succeeded. - So, upstream this change just in case and to make merges easier.
This commit is contained in:
parent
683015cadb
commit
eaf1e71c8e
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ class Texlab < Formula
|
||||||
end
|
end
|
||||||
|
|
||||||
test do
|
test do
|
||||||
require "Open3"
|
require "open3"
|
||||||
|
|
||||||
begin
|
begin
|
||||||
stdin, stdout, _, wait_thr = Open3.popen3("#{bin}/texlab")
|
stdin, stdout, _, wait_thr = Open3.popen3("#{bin}/texlab")
|
||||||
|
|
Loading…
Reference in a new issue