Skip to content

Commit 1f818e4

Browse files
authored
test: Fix a typo (#154)
1 parent a276f40 commit 1f818e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/fiddle/test_import.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def test_nested_struct_reusing_other_structs()
215215

216216
keyboard_event_struct = Fiddle::Importer.struct(['unsigned int state', 'char key'])
217217
mouse_event_struct = Fiddle::Importer.struct(['unsigned int button', 'unsigned short x', 'unsigned short y'])
218-
event_union = Fiddle::Importer.union([{ keboard: keyboard_event_struct, mouse: mouse_event_struct}])
218+
event_union = Fiddle::Importer.union([{ keyboard: keyboard_event_struct, mouse: mouse_event_struct}])
219219
assert_equal LIBC::UnionNestedStruct.size, event_union.size
220220
end
221221

0 commit comments

Comments
 (0)