NetBox should always be referred to as NetBox
Fix all instances of "Netbox". ```Shell git ls-files -z . | xargs --null -I '{}' find './{}' -type f -print0 | xargs --null sed --in-place --regexp-extended 's#Netbox#NetBox#g;' ``` Ref: https://netbox.readthedocs.io/en/stable/development/style-guide/#branding
This commit is contained in:
4
test.sh
4
test.sh
@@ -1,5 +1,5 @@
|
||||
#!/bin/bash
|
||||
# Runs the original Netbox unit tests and tests whether all initializers work.
|
||||
# Runs the original NetBox unit tests and tests whether all initializers work.
|
||||
# Usage:
|
||||
# ./test.sh latest
|
||||
# ./test.sh v2.9.7
|
||||
@@ -55,7 +55,7 @@ test_setup() {
|
||||
}
|
||||
|
||||
test_netbox_unit_tests() {
|
||||
echo "⏱ Running Netbox Unit Tests"
|
||||
echo "⏱ Running NetBox Unit Tests"
|
||||
SKIP_STARTUP_SCRIPTS=true $doco run --rm netbox ./manage.py test
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user