Skip to content

Commit 5db51b7

Browse files
committed
minor fixes
1 parent d88245d commit 5db51b7

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

spec/umbrellio_utils/semantic_logger/tiny_json_formatter_spec.rb

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
instance_double(SemanticLogger::Log).tap do |instance|
1919
allow(instance).to receive(:level).and_return(log_level)
2020
allow(instance).to receive(:name).and_return(log_name)
21-
allow(instance).to receive(:thread_name).and_return(log_thread_name)
2221
allow(instance).to receive(:message).and_return(log_message)
2322
allow(instance).to receive(:exception).and_return(log_exception)
2423
allow(instance).to receive(:tags).and_return(log_tags)
@@ -34,14 +33,13 @@
3433

3534
let(:log_level) { :debug }
3635
let(:log_name) { "SomeName" }
37-
let(:log_thread_name) { "10706" }
3836
let(:log_message) { "Some Message" }
3937
let(:log_exception) { nil }
4038
let(:log_tags) { [] }
4139
let(:log_named_tags) { Hash[] }
4240
let(:log_time) { Time.utc(2007) }
4341

44-
# "md5(11112222) = 821f3157e1a3456bfe1a000a1adf0862"
42+
# md5(11112222) = 821f3157e1a3456bfe1a000a1adf0862
4543
let(:expected_thread_fingerprint) { "821f3157" }
4644

4745
it "properly formats log" do

0 commit comments

Comments
 (0)