We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 316237e commit a2e464dCopy full SHA for a2e464d
tests_old/test_declare.py
@@ -7,7 +7,6 @@
7
assert_set_equal,
8
)
9
10
-from tests_old.schema_simple import IJ, JI
11
from .schema import *
12
import datajoint as dj
13
import inspect
@@ -347,10 +346,10 @@ class WithSuchALongPartNameThatItCrashesMySQL(dj.Part):
347
346
@staticmethod
348
def test_hidden_attributes():
349
assert (
350
- list(JI().heading._attributes.keys())[-1]
351
- == "_djtest_relational.#j_i_timestamp"
+ list(Experiment().heading._attributes.keys())[-1]
+ == "_djtest_test1._experiment_timestamp"
352
353
354
- list(JI().heading.attributes.keys())[-1]
355
- != "_djtest_relational.#j_i_timestamp"
+ list(Experiment().heading.attributes.keys())[-1]
+ != "_djtest_test1._experiment_timestamp"
356
0 commit comments