Skip to content
This repository has been archived by the owner on Jan 5, 2023. It is now read-only.

Commit

Permalink
New UFFI requires types to be symbols and not strings. Strings are st…
Browse files Browse the repository at this point in the history
…ring literals.

This change makes all tests green
  • Loading branch information
guillep committed Oct 3, 2019
1 parent 52980af commit 9f1e1ee
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -47,7 +47,7 @@ TFUFFIMarshallingInCallbacksTest >> call: aName type: aType value: aValue [
{ #category : #tests }
TFUFFIMarshallingInCallbacksTest >> call: aName value: aValue [

^ self call: aName type: { aName } value: aValue
^ self call: aName type: { aName asSymbol } value: aValue
]

{ #category : #'ffi-calls' }
Expand Down

0 comments on commit 9f1e1ee

Please sign in to comment.