File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -135,22 +135,22 @@ def test_schema_save():
135135
136136def 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
You can’t perform that action at this time.
0 commit comments