Skip to content

Commit adbba9e

Browse files
committed
justfile typo and move test scenario to test/data
1 parent 38924bb commit adbba9e

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ startd:
7272
kubectl apply -f resources/manifests/namespace.yaml
7373
kubectl apply -f resources/manifests/rbac-config.yaml
7474
kubectl apply -f resources/manifests/warnet-rpc-service.yaml
75-
sed 's?/mnt/src?'`PWD`'?g' resouces/manifests/warnet-rpc-statefulset-dev.yaml | kubectl apply -f -
75+
sed 's?/mnt/src?'`PWD`'?g' resources/manifests/warnet-rpc-statefulset-dev.yaml | kubectl apply -f -
7676
kubectl config set-context --current --namespace=warnet
7777

7878
echo waiting for rpc to come online

test/dag_connection_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ def run_connect_dag_scenario(self):
3434
"Successfully ran the connect_dag.py scenario using a temporary file"
3535
]
3636
self.log_unexpected_msgs = ["Test failed."]
37-
self.warcli("scenarios run-file test/framework_tests/connect_dag.py")
37+
self.warcli("scenarios run-file test/data/scenario_connect_dag.py")
3838
self.wait_for_all_scenarios()
3939
self.assert_log_msgs()
4040

4141
def run_connect_dag_scenario_post_connection(self):
4242
self.log.info("Running connect_dag scenario")
4343
self.log_expected_msgs = ["Successfully ran the connect_dag.py scenario"]
4444
self.log_unexpected_msgs = ["Test failed"]
45-
self.warcli("scenarios run-file test/framework_tests/connect_dag.py")
45+
self.warcli("scenarios run-file test/data/scenario_connect_dag.py")
4646
self.wait_for_all_scenarios()
4747
self.assert_log_msgs()
4848

File renamed without changes.

test/framework_tests/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)