Skip to content

Commit

Permalink
Merge branch 'MDL-54964-31' of git://github.com/jleyva/moodle into MO…
Browse files Browse the repository at this point in the history
…ODLE_31_STABLE
  • Loading branch information
andrewnicols committed Jun 28, 2016
2 parents e9ae977 + 4ec683a commit b228a7c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion admin/tool/mobile/tests/externallib_test.php
Expand Up @@ -50,7 +50,8 @@ public function test_get_plugins_supporting_mobile() {
$result = external::get_plugins_supporting_mobile();
$result = external_api::clean_returnvalue(external::get_plugins_supporting_mobile_returns(), $result);
$this->assertCount(0, $result['warnings']);
$this->assertCount(0, $result['plugins']);
$this->assertArrayHasKey('plugins', $result);
$this->assertTrue(is_array($result['plugins']));
}

}

0 comments on commit b228a7c

Please sign in to comment.