@@ -63,7 +63,7 @@ describe('helpers/spaceValidation', () => {
63
63
64
64
const space = createMockSpace ( ) ;
65
65
await expect ( validateSpaceSettings ( space , 'mainnet' ) ) . rejects . toBe (
66
- ' strategy " whitelist" is not a valid strategy'
66
+ " strategy ' whitelist' is not a valid strategy"
67
67
) ;
68
68
} ) ;
69
69
@@ -72,7 +72,7 @@ describe('helpers/spaceValidation', () => {
72
72
73
73
const space = createMockSpace ( ) ;
74
74
await expect ( validateSpaceSettings ( space , 'mainnet' ) ) . rejects . toBe (
75
- ' strategy " whitelist" is not available anymore'
75
+ " strategy ' whitelist' is not available anymore"
76
76
) ;
77
77
} ) ;
78
78
@@ -90,7 +90,7 @@ describe('helpers/spaceValidation', () => {
90
90
} ) ;
91
91
92
92
await expect ( validateSpaceSettings ( space , 'mainnet' ) ) . rejects . toBe (
93
- ' strategy " invalid-strategy-1" is not a valid strategy'
93
+ " strategy ' invalid-strategy-1' is not a valid strategy"
94
94
) ;
95
95
} ) ;
96
96
@@ -106,7 +106,7 @@ describe('helpers/spaceValidation', () => {
106
106
} ) ;
107
107
108
108
await expect ( validateSpaceSettings ( space , 'mainnet' ) ) . rejects . toBe (
109
- ' strategy " strategy1" is not available anymore'
109
+ " strategy ' strategy1' is not available anymore"
110
110
) ;
111
111
} ) ;
112
112
@@ -122,7 +122,7 @@ describe('helpers/spaceValidation', () => {
122
122
} ) ;
123
123
124
124
await expect ( validateSpaceSettings ( space , 'mainnet' ) ) . rejects . toBe (
125
- ' strategy " override-strategy" is only available for pro spaces'
125
+ " strategy ' override-strategy' is only available for pro spaces"
126
126
) ;
127
127
} ) ;
128
128
0 commit comments