File tree Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ pub async fn create_subgraph(
163
163
164
164
let manifest = SubgraphManifest :: < graph:: blockchain:: mock:: MockBlockchain > {
165
165
id : subgraph_id. clone ( ) ,
166
- spec_version : Version :: new ( 1 , 0 , 0 ) ,
166
+ spec_version : Version :: new ( 1 , 3 , 0 ) ,
167
167
features : BTreeSet :: new ( ) ,
168
168
description : Some ( format ! ( "manifest for {}" , subgraph_id) ) ,
169
169
repository : Some ( format ! ( "repo for {}" , subgraph_id) ) ,
@@ -227,7 +227,7 @@ pub async fn create_test_subgraph_with_features(
227
227
228
228
let manifest = SubgraphManifest :: < graph:: blockchain:: mock:: MockBlockchain > {
229
229
id : subgraph_id. clone ( ) ,
230
- spec_version : Version :: new ( 1 , 0 , 0 ) ,
230
+ spec_version : Version :: new ( 1 , 3 , 0 ) ,
231
231
features,
232
232
description : Some ( format ! ( "manifest for {}" , subgraph_id) ) ,
233
233
repository : Some ( format ! ( "repo for {}" , subgraph_id) ) ,
Original file line number Diff line number Diff line change @@ -410,7 +410,7 @@ where
410
410
async fn insert_test_data ( store : Arc < DieselSubgraphStore > ) -> DeploymentLocator {
411
411
let manifest = SubgraphManifest :: < graph_chain_ethereum:: Chain > {
412
412
id : LOAD_RELATED_ID . clone ( ) ,
413
- spec_version : Version :: new ( 1 , 0 , 0 ) ,
413
+ spec_version : Version :: new ( 1 , 3 , 0 ) ,
414
414
features : Default :: default ( ) ,
415
415
description : None ,
416
416
repository : None ,
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ where
136
136
async fn insert_test_data ( store : Arc < DieselSubgraphStore > ) -> DeploymentLocator {
137
137
let manifest = SubgraphManifest :: < graph_chain_ethereum:: Chain > {
138
138
id : TEST_SUBGRAPH_ID . clone ( ) ,
139
- spec_version : Version :: new ( 1 , 0 , 0 ) ,
139
+ spec_version : Version :: new ( 1 , 3 , 0 ) ,
140
140
features : Default :: default ( ) ,
141
141
description : None ,
142
142
repository : None ,
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ where
165
165
async fn insert_test_data ( store : Arc < DieselSubgraphStore > ) -> DeploymentLocator {
166
166
let manifest = SubgraphManifest :: < graph_chain_ethereum:: Chain > {
167
167
id : TEST_SUBGRAPH_ID . clone ( ) ,
168
- spec_version : Version :: new ( 1 , 0 , 0 ) ,
168
+ spec_version : Version :: new ( 1 , 3 , 0 ) ,
169
169
features : Default :: default ( ) ,
170
170
description : None ,
171
171
repository : None ,
@@ -1270,7 +1270,7 @@ fn entity_changes_are_fired_and_forwarded_to_subscriptions() {
1270
1270
. expect ( "Failed to parse user schema" ) ;
1271
1271
let manifest = SubgraphManifest :: < graph_chain_ethereum:: Chain > {
1272
1272
id : subgraph_id. clone ( ) ,
1273
- spec_version : Version :: new ( 1 , 0 , 0 ) ,
1273
+ spec_version : Version :: new ( 1 , 3 , 0 ) ,
1274
1274
features : Default :: default ( ) ,
1275
1275
description : None ,
1276
1276
repository : None ,
Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ fn create_subgraph() {
170
170
171
171
let manifest = SubgraphManifest :: < graph_chain_ethereum:: Chain > {
172
172
id,
173
- spec_version : Version :: new ( 1 , 0 , 0 ) ,
173
+ spec_version : Version :: new ( 1 , 3 , 0 ) ,
174
174
features : Default :: default ( ) ,
175
175
description : None ,
176
176
repository : None ,
@@ -543,7 +543,7 @@ fn subgraph_features() {
543
543
} = get_subgraph_features ( id. to_string ( ) ) . unwrap ( ) ;
544
544
545
545
assert_eq ! ( NAME , subgraph_id. as_str( ) ) ;
546
- assert_eq ! ( "1.0 .0" , spec_version) ;
546
+ assert_eq ! ( "1.3 .0" , spec_version) ;
547
547
assert_eq ! ( "1.0.0" , api_version. unwrap( ) ) ;
548
548
assert_eq ! ( NETWORK_NAME , network) ;
549
549
assert_eq ! (
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ lazy_static! {
50
50
async fn insert_test_data ( store : Arc < DieselSubgraphStore > ) -> DeploymentLocator {
51
51
let manifest = SubgraphManifest :: < graph_chain_ethereum:: Chain > {
52
52
id : TEST_SUBGRAPH_ID . clone ( ) ,
53
- spec_version : Version :: new ( 1 , 0 , 0 ) ,
53
+ spec_version : Version :: new ( 1 , 3 , 0 ) ,
54
54
features : Default :: default ( ) ,
55
55
description : None ,
56
56
repository : None ,
You can’t perform that action at this time.
0 commit comments