Skip to content

Commit cb4ece3

Browse files
author
Kevin Paulisse
committed
Fix tests for some more fixnum -> integer
1 parent f5768a1 commit cb4ece3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spec/octocatalog-diff/integration/fact_override_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,14 +136,14 @@
136136
expect(file).to include('my_boolean: TrueClass true')
137137
expect(file).to include('my_integer: Fixnum 42')
138138
expect(file).to include('my_float: Float 3.14159')
139-
expect(file).to include('my_floating_integer: Integer -100')
139+
expect(file).to include('my_floating_integer: Fixnum -100')
140140
expect(file).to include('my_json: String "{\\"hello\\":\\"world\\"}"')
141141
expect(file).to include('my_boolean_string: FalseClass false')
142-
expect(file).to include('my_integer_string: Integer 42')
142+
expect(file).to include('my_integer_string: Fixnum 42')
143143
expect(file).to include('my_float_string: Float 3.14159')
144144
expect(file).to include('real_boolean: FalseClass false')
145145
expect(file).to include('real_float: Float 3.14159')
146-
expect(file).to include('real_integer: Integer 42')
146+
expect(file).to include('real_integer: Fixnum 42')
147147
expect(file).to include('real_string: String "chicken"')
148148
end
149149

0 commit comments

Comments
 (0)