We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e01031e commit 375f75eCopy full SHA for 375f75e
test/test_sanity.rb
@@ -17,10 +17,10 @@ def config subconfig = nil
17
18
def assert_init exp_score_threshold, cfg = nil
19
root = "."
20
- exp = ["./test/test_sanity.rb", "./lib/cc/engine/flog.rb"]
+ exp = ["./lib/cc/engine/flog.rb", "./test/test_sanity.rb"].sort
21
ccflog = CC::Engine::Flog.new(root, config(cfg))
22
assert_equal exp_score_threshold, ccflog.config["score_threshold"]
23
- assert_equal exp, ccflog.files
+ assert_equal exp, ccflog.files.sort
24
25
exp_conf = {
26
"include_paths" => ["."],
0 commit comments