File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ class AddTableColumns(Smoketest):
281
281
"""
282
282
283
283
def test_add_table_columns (self ):
284
- """This tests that a module with invalid schema changes cannot be published without -c or a migration. """
284
+ """This tests that a module with adding columns with defaults can be published"""
285
285
286
286
logging .info ("Initial publish complete, trying to do an invalid update." )
287
287
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ def test_module_update(self):
88
88
self .write_module_code (self .MODULE_CODE_B )
89
89
with self .assertRaises (CalledProcessError ) as cm :
90
90
self .publish_module (name , clear = False )
91
- self .assertIn ("Error: Database update rejected " , cm .exception .stderr )
91
+ self .assertIn ("Error: Pre-publish check failed " , cm .exception .stderr )
92
92
93
93
# Check that the old module is still running by calling say_hello
94
94
self .call ("say_hello" )
You can’t perform that action at this time.
0 commit comments