File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -83,16 +83,16 @@ class InputSchemaTest < ActiveSupport::TestCase
8383 test "== compares two input schemas with the same properties and required fields" do
8484 schema1 = InputSchema . new ( properties : { foo : { type : "string" } } , required : [ :foo ] )
8585 schema2 = InputSchema . new ( properties : { foo : { type : "string" } } , required : [ :foo ] )
86- assert schema1 == schema2
86+ assert_equal schema1 , schema2
8787
8888 schema3 = InputSchema . new ( properties : { bar : { type : "string" } } , required : [ :bar ] )
89- refute schema1 == schema3
89+ refute_equal schema1 , schema3
9090
9191 schema4 = InputSchema . new ( properties : { foo : { type : "string" } } , required : [ :bar ] )
92- refute schema1 == schema4
92+ refute_equal schema1 , schema4
9393
9494 schema5 = InputSchema . new ( properties : { bar : { type : "string" } } , required : [ :foo ] )
95- refute schema1 == schema5
95+ refute_equal schema1 , schema5
9696 end
9797 end
9898 end
You can’t perform that action at this time.
0 commit comments