Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
dkropachev committed Jan 12, 2025
1 parent d8e6b6d commit 79f6bfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions old_tests/test_cmds.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
import subprocess

import yaml
from ruamel.yaml import YAML

from ccmlib import common
from . import TEST_DIR
Expand Down Expand Up @@ -91,6 +91,6 @@ def cluster_create_vnodes_test(self):
self.validate_output(self.create_cmd(args))
yaml_path = os.path.join(common.get_default_path(), 'test', 'node1', 'conf', 'cassandra.yaml')
with open(yaml_path, 'r') as f:
data = yaml.safe_load(f)
data = YAML().load(f)

self.assertEqual(256, data['num_tokens'])

0 comments on commit 79f6bfb

Please sign in to comment.