Skip to content

Commit 33e95db

Browse files
Update test for uppercased schema.
1 parent 202ecd3 commit 33e95db

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_schema.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -135,22 +135,22 @@ def test_schema_save():
135135

136136
def test_uppercase_schema():
137137
# https://github.com/datajoint/datajoint-python/issues/564
138-
schema1 = dj.schema('Upper_Schema')
138+
schema1 = dj.Schema('Schema_A')
139139

140140
@schema1
141141
class Subject(dj.Manual):
142142
definition = """
143143
name: varchar(32)
144144
"""
145145

146-
Upper_Schema = dj.VirtualModule('Upper_Schema', 'Upper_Schema')
146+
Schema_A = dj.VirtualModule('Schema_A', 'Schema_A')
147147

148-
schema2 = dj.schema('schema_b')
148+
schema2 = dj.Schema('schema_b')
149149

150150
@schema2
151151
class Recording(dj.Manual):
152152
definition = """
153-
-> Upper_Schema.Subject
153+
-> Schema_A.Subject
154154
id: smallint
155155
"""
156156

0 commit comments

Comments
 (0)