Explorar o código

[beeswax] Fix mock db after table autocomplete change

Romain Rigaux %!s(int64=12) %!d(string=hai) anos
pai
achega
4a613f16d5
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  1. 3 0
      apps/beeswax/src/beeswax/tests.py

+ 3 - 0
apps/beeswax/src/beeswax/tests.py

@@ -1484,6 +1484,9 @@ class MockDbms:
   def get_databases(self):
     return ['default', 'test']
 
+  def get_tables(self, database):
+    return ['table1', 'table2']
+
 
 class TestWithMockedServer(object):