Skip to content

Commit 7b0d1b5

Browse files
Update server and error message
1 parent 4820d26 commit 7b0d1b5

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

tests/check_input_data_repo.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
input_data_list_yaml, MOM_input_files
2222
)
2323

24-
# all mom input file names in svn inputdata repository
24+
# all mom input file names in gdex inputdata repository
2525
r = sr.RemoteClient(
26-
"https://svn-ccsm-inputdata.cgd.ucar.edu/trunk/inputdata/ocn/mom/"
26+
"https://osdf-data.gdex.ucar.edu/ncar/gdex/d651077/cesmdata/inputdata/ocn/mom/"
2727
)
2828
repo_files = {f["name"] for relpath, f in r.list_recursive() if f["kind"] == "file"}
2929

30-
# File names missing in the svn repository
30+
# File names missing in the repository
3131
missing_files = (
3232
set(
3333
filename
@@ -39,10 +39,10 @@
3939
if missing_files:
4040
raise ValueError(
4141
"Below file names are listed in input_data_list.yaml but are missing "
42-
"in the svn inputdata repository. If these files are not needed, "
42+
"in the inputdata repository. If these files are not needed, "
4343
"please remove them from input_data_list.yaml. If they are needed, "
44-
"please import them to the svn repository.\n\n "
44+
"please import them to the gdex repository.\n\n "
4545
+ "\n ".join(missing_files)
4646
)
4747
else:
48-
print("All files in input_data_list.yaml are present in the svn repository.")
48+
print("All files in input_data_list.yaml are present in the gdex repository.")

0 commit comments

Comments
 (0)