Skip to content

Commit

Permalink
chore: unsaved renamed files
Browse files Browse the repository at this point in the history
  • Loading branch information
penglei0 committed Aug 3, 2024
1 parent 7518dff commit 527bced
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
]
},
"pylint.args": ["--rcfile=${workspaceFolder}/.pylintrc"],
"cSpell.words": ["Containernet", "dimage", "olsr", "intf", "Iperf", "BANDW"]
"cSpell.words": ["Containernet", "dimage", "olsr", "intf", "Iperf", "BANDW","testsuites"]
}
2 changes: 1 addition & 1 deletion src/interfaces/network.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import logging
from abc import ABC, abstractmethod
from containernet.topology import (ITopology)
from test_suites.test import ITestSuite
from testsuites.test import ITestSuite


class INetwork(ABC):
Expand Down
6 changes: 3 additions & 3 deletions src/run_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
from containernet.containerized_network import ContainerizedNetwork
from containernet.config import (
IConfig, NodeConfig, TopologyConfig, supported_config_keys)
from test_suites.test import (TestType, TestConfig)
from test_suites.test_iperf import IperfTest
from test_suites.test_ping import PingTest
from testsuites.test import (TestType, TestConfig)
from testsuites.test_iperf import IperfTest
from testsuites.test_ping import PingTest


def load_test(test_yaml_file: str):
Expand Down

0 comments on commit 527bced

Please sign in to comment.