Skip to content

Commit

Permalink
Use new Constant instead of old Value argument in new tests
Browse files Browse the repository at this point in the history
  • Loading branch information
guillep committed Sep 30, 2019
1 parent 1a8ffbc commit 077d489
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/UnifiedFFI-Tests/FFIFunctionResolutionTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ FFIFunctionResolutionTest >> testResolveClassVariableShouldSetClassVariableLoade
FFIFunctionResolutionTest >> testResolveConstantFalseShouldSetConstantZeroLoader [

| argument resolver |
argument := FFIValueArgument new
argument := FFIConstantArgument new
value: 'false';
yourself.

Expand All @@ -141,7 +141,7 @@ FFIFunctionResolutionTest >> testResolveConstantFalseShouldSetConstantZeroLoader
FFIFunctionResolutionTest >> testResolveConstantIntegerShouldSetConstantLoader [

| argument |
argument := FFIValueArgument new
argument := FFIConstantArgument new
value: 1;
yourself.

Expand All @@ -155,7 +155,7 @@ FFIFunctionResolutionTest >> testResolveConstantIntegerShouldSetConstantLoader [
FFIFunctionResolutionTest >> testResolveConstantNULLShouldSetConstantNullLoader [

| argument |
argument := FFIValueArgument new
argument := FFIConstantArgument new
value: 'NULL';
yourself.

Expand All @@ -169,7 +169,7 @@ FFIFunctionResolutionTest >> testResolveConstantNULLShouldSetConstantNullLoader
FFIFunctionResolutionTest >> testResolveConstantNilShouldSetConstantNullLoader [

| argument |
argument := FFIValueArgument new
argument := FFIConstantArgument new
value: 'nil';
yourself.

Expand Down Expand Up @@ -208,7 +208,7 @@ FFIFunctionResolutionTest >> testResolveConstantSelfShouldSetConstantSelfLoader
FFIFunctionResolutionTest >> testResolveConstantTrueShouldSetConstantOneLoader [

| argument |
argument := FFIValueArgument new
argument := FFIConstantArgument new
value: 'true';
yourself.

Expand Down

0 comments on commit 077d489

Please sign in to comment.