~ubuntu-branches/ubuntu/trusty/moodle/trusty-proposed

« back to all changes in this revision

Viewing changes to mod/assign/tests/externallib_test.php

  • Committer: Package Import Robot
  • Author(s): Thijs Kinkhorst
  • Date: 2013-09-09 15:22:35 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20130909152235-d9njbvgugzm380an
Tags: 2.5.2-1
* New upstream version: 2.5.2.
  - Incorporates S3 security patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
        $this->assertEquals(1, count($assignment['grades']));
112
112
        $grade = $assignment['grades'][0];
113
113
        $this->assertEquals($student->id, $grade['userid']);
114
 
        // Should be the last grade (not the first)
 
114
        // Should be the last grade (not the first).
115
115
        $this->assertEquals(75, $grade['grade']);
116
116
    }
117
117